Пример #1
0
 public CoreBankingService(
     OnePayContext context, IUserService userService
     , IAccountsService accountsService
     , IBusinessProductService businessProductService
     , IMessagingService messagingService
     , ITransactionService transactionService
     )
 {
     _context                = context;
     _userService            = userService;
     _accountsService        = accountsService;
     _businessProductService = businessProductService;
     _transactionService     = transactionService;
     _messagingService       = messagingService;
 }
 public BusinessProductsController(IBusinessProductService bProductService, IUserService userService, IMapper mapper)
 {
     _bProductService = bProductService;
     _userService     = userService;
     _mapper          = mapper;
 }
Пример #3
0
 public OnePayService(OnePayContext context, IBusinessProductService businessProductService, IUserService userService)
 {
     _context = context;
     _businessProductService = businessProductService;
     _userService            = userService;
 }