public ExpenditureController(IExpenditureService expenditureService, IExpenditureTypeService expenditureTypeService, IBankAccountService bankAccountService,
                              IPaymentMethodService paymentMethodService, IAtmWithdrawService atmWithdrawService, IBudgetPlanService budgetPlanService) : base(bankAccountService)
 {
     this._bankAccountService     = bankAccountService;
     this._expenditureService     = expenditureService;
     this._expenditureTypeService = expenditureTypeService;
     this._paymentMethodService   = paymentMethodService;
     this._atmWithdrawService     = atmWithdrawService;
     this._budgetPlanService      = budgetPlanService;
 }
 public AtmWithdrawController(IAtmWithdrawService atmWithdrawService, IBankAccountService bankAccountService) : base(bankAccountService)
 {
     this._atmWithdrawService = atmWithdrawService;
 }
Пример #3
0
 public AtmWithdrawController(IAtmWithdrawService AtmWithdrawService)
 {
     _atmWithdrawService = AtmWithdrawService;
 }