Exemple #1
0
 public GlobalController(
     IBankAccountService bankAccountService,
     IUserService userService,
     IGlobalTransferHelper globalTransferHelper)
     : base(bankAccountService)
 {
     this.bankAccountService   = bankAccountService;
     this.userService          = userService;
     this.globalTransferHelper = globalTransferHelper;
 }
Exemple #2
0
 public PaymentsController(
     IOptions <BankConfiguration> bankConfigurationOptions,
     IBankAccountService bankAccountService,
     IUserService userService,
     IGlobalTransferHelper globalTransferHelper)
 {
     this.bankConfiguration    = bankConfigurationOptions.Value;
     this.bankAccountService   = bankAccountService;
     this.userService          = userService;
     this.globalTransferHelper = globalTransferHelper;
 }
Exemple #3
0
 public CardPaymentsController(IGlobalTransferHelper globalTransferHelper, ICardService cardService)
 {
     this.globalTransferHelper = globalTransferHelper;
     this.cardService          = cardService;
 }