public OrderService(IUintOfWork uintOfWork, INotificationService notificationService, ITreasuryService treasuryService, IMapper mapper, IUserService userService, IRepository <ReceiptOfTheOrderStatus> receiptOfTheOrderStatusRepository) { _uintOfWork = uintOfWork; _notificationService = notificationService; _treasuryService = treasuryService; _mapper = mapper; _userService = userService; _receiptOfTheOrderStatusRepository = receiptOfTheOrderStatusRepository; }
public EmployeeAuthController(KokazContext context, IMapper mapper, Logging logging, ITreasuryService treasuryService) : base(context, mapper, logging) { _treasuryService = treasuryService; }