public TicketService(
            IMapper mapper,
            IUnitOfWork unitOfWork,
            ITypedCacheService <TicketModel, long> cache,
            ITicketRepository repository,
            IEffortOperationRepository effortOperationRepository,
            IEffortOperationService effortOperationService,
            IInventoryOperationRepository inventoryOperationRepository,
            IInventoryOperationService inventoryOperationService,
            IInventoryService inventoryService,
            ITypedCacheService <EffortOperationModel, long> effortOperationModelCache,
            ITypedCacheService <InventoryOperationModel, long> inventoryOperationModelCache,
            ITypedCacheService <InventoryModel, long> inventoryModelCache)
            : base(mapper, unitOfWork, cache, repository)
        {
            this._effortOperationRepository    = effortOperationRepository;
            this._effortOperationService       = effortOperationService;
            this._inventoryOperationRepository = inventoryOperationRepository;
            this._inventoryOperationService    = inventoryOperationService;
            this._inventoryService             = inventoryService;

            this._effortOperationModelCache    = effortOperationModelCache;
            this._inventoryOperationModelCache = inventoryOperationModelCache;
            this._inventoryModelCache          = inventoryModelCache;
        }
Esempio n. 2
0
 public EffortOperationService(IMapper mapper,
                               IUnitOfWork unitOfWork,
                               ITypedCacheService <EffortOperationModel, long> cache,
                               IEffortOperationRepository repository)
     : base(mapper, unitOfWork, cache, repository)
 {
 }