Esempio n. 1
0
 public PlanePartService(IUnitOfWork uow, IMapperProfile mapperProfile)
 {
     _mapper = mapperProfile.GetMapper();
     _unit   = uow;
 }
Esempio n. 2
0
 public UserService(IUnitOfWork uow, IMapperProfile mapperProfile, IEncodingService encoding)
 {
     _encodingService = encoding;
     _mapper          = mapperProfile.GetMapper();
     _unit            = uow;
 }
Esempio n. 3
0
 public PlaneModelService(IUnitOfWork unitOfWork, IMapperProfile mapperProfile)
 {
     _unit   = unitOfWork;
     _mapper = mapperProfile.GetMapper();
 }