Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public EmployeeAuthController(KokazContext context, IMapper mapper, Logging logging, ITreasuryService treasuryService) : base(context, mapper, logging)
 {
     _treasuryService = treasuryService;
 }