Exemplo n.º 1
0
 public TreasuryService(IUintOfWork uintOfWork, IRepository <Treasury> repository, IRepository <TreasuryHistory> historyRepositroy, IUserService userService, IMapper mapper)
 {
     _mapper            = mapper;
     _uintOfWork        = uintOfWork;
     _userService       = userService;
     _repository        = repository;
     _historyRepositroy = historyRepositroy;
 }
Exemplo n.º 2
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;
 }
 public RegisterStudentCommandHandler(IUintOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public ClientCashedService(IRepository <Client> repository, IMapper mapper, IMemoryCache cache, IRepository <Order> orderRepository, IRepository <ClientPhone> clientPhoneReposiotry, IUintOfWork uintOfWork) : base(repository, mapper, cache)
 {
     _orderRepository       = orderRepository;
     _clientPhoneReposiotry = clientPhoneReposiotry;
     _uintOfWork            = uintOfWork;
 }
 public NotificationService(IUintOfWork uintOfWork, IMapper mapper, NotificationHub notificationHub)
 {
     _uintOfWork      = uintOfWork;
     _mapper          = mapper;
     _notificationHub = notificationHub;
 }
 public GetAllStudentQueryHandler(IUintOfWork unitOfWork, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }