Ejemplo n.º 1
0
 public AccountsController(
     IDepositService depositService,
     IWithdrawService withdrawService,
     ICloseService closeService,
     IAccountsQueries accountsQueries)
 {
     this.depositService  = depositService;
     this.withdrawService = withdrawService;
     this.closeService    = closeService;
     this.accountsQueries = accountsQueries;
 }
 public AccountsController(
     ICloseService closeService)
 {
     this.closeService = closeService;
 }