Ejemplo n.º 1
0
 public ContinentService(Domain.Contract.IService <Domain.Model.Continent> domainService, IMapper mapper)
 {
     _domainService = domainService;
     _mapper        = mapper;
 }
Ejemplo n.º 2
0
 public InjuryService(Domain.Contract.IService <Domain.Model.Injury> service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Ejemplo n.º 3
0
 public WorldService(Domain.Contract.IService <Domain.Model.World> domainService, IMapper mapper)
 {
     _domainService = domainService;
     _mapper        = mapper;
 }