Exemple #1
0
 public Service(IMainUnitOfWork unitOfWork, IMapperDTO mapper)
 {
     _IOF       = unitOfWork;
     _MapperDTO = mapper;
 }
Exemple #2
0
 public UserService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _Unit   = unit;
     _Mapper = mapper;
 }
Exemple #3
0
 public StoreService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _IOF    = unit;
     _Mapper = mapper;
 }