Exemplo n.º 1
0
 public ClassificationService(IUnitOfWork unitOfWork,
                              IMapper mapper,
                              IUnitTypeCache unitTypeCache)
 {
     _unitOfWork    = unitOfWork;
     _mapper        = mapper;
     _unitTypeCache = unitTypeCache;
 }
Exemplo n.º 2
0
 public UnitEditService(ITransactionManager transactionManager,
                        IMapper mapper,
                        IUnitOfWork unitOfWork,
                        IUnitTypeCache unitTypeCache)
 {
     _transactionManager = transactionManager;
     _mapper             = mapper;
     _unitOfWork         = unitOfWork;
     _unitTypeCache      = unitTypeCache;
 }
Exemplo n.º 3
0
 public UnitTypeService(IUnitTypeCache unitTypeCache)
 {
     _unitTypeCache = unitTypeCache;
 }