Exemplo n.º 1
0
 public AdminController(IUsersService usersService, IDepositsService depositService, ICreditsService creditService, IWalletsService walletsService, IChargeAccountsService chargeAccountService, IDebitCardsService debitCardService, ISupportTicketsService supportTicketService)
 {
     _userService          = usersService;
     _creditService        = creditService;
     _walletService        = walletsService;
     _depositService       = depositService;
     _chargeAccountService = chargeAccountService;
     _debitCardService     = debitCardService;
     _supportTicketService = supportTicketService;
 }
Exemplo n.º 2
0
 public SupportTicketController(BankSystemContext context, ISupportTicketsService ticketService)
 {
     _context       = context;
     _ticketService = ticketService;
 }