class Store::EntityMapper

Public Class Methods

new(store) click to toggle source
# File lib/store/entity_mapper.rb, line 3
def initialize(store)
  @store = store
end

Public Instance Methods

map(entity) click to toggle source
# File lib/store/entity_mapper.rb, line 7
def map(entity)
  raise NotImplementedError
end
unmap(entity_class, mapped_entity) click to toggle source
# File lib/store/entity_mapper.rb, line 11
def unmap(entity_class, mapped_entity)
  raise NotImplementedError
end

Private Instance Methods

store() click to toggle source
# File lib/store/entity_mapper.rb, line 16
def store
  @store
end