Ejemplo n.º 1
0
 public async Task Insert(Injury entity)
 {
     var injury = _mapper.Map <Domain.Model.Injury>(entity);
     await _service.Insert(injury);
 }
Ejemplo n.º 2
0
 public async Task Insert(Country entity)
 {
     var country = _mapper.Map <Domain.Model.Country>(entity);
     await _domainService.Insert(country);
 }
Ejemplo n.º 3
0
 public async Task Insert(Continent entity)
 {
     var continent = _mapper.Map <Domain.Model.Continent>(entity);
     await _domainService.Insert(continent);
 }
Ejemplo n.º 4
0
 public async Task Insert(World entity)
 {
     var world = _mapper.Map <Domain.Model.World>(entity);
     await _domainService.Insert(world);
 }