public BankAccountApiController(IBankAccountAppService bankAccountAppService)
 {
     _bankAccountAppService = bankAccountAppService;
 }
Ejemplo n.º 2
0
 public BankAccountController(ILogger <AccountController> logger,
                              IBankAccountAppService bankaccountAppService)
     : base(logger)
 {
     this.bankaccountAppService = bankaccountAppService;
 }
 public BankAccountController(ILogger <BankAccountController> logger, IBankAccountAppService accountAppService)
 {
     _accountAppService = accountAppService;
     _logger            = logger;
 }