Skip to content
Snippets Groups Projects
Commit 5620cb09 authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

adding orient db base class

parent 446495cf
No related branches found
No related tags found
No related merge requests found
class OrientDb::Base
attr_reader :connection
def initialize(connection = nil)
@connection = connection
end
end
\ No newline at end of file
class Repositories::OrientDb::UserRepository module OrientDb
class UserRepository < Base
def save(user) def register(attributes={})
end
end
end
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment