Example #1
0
 public FinancialAccountController(IAccountBusinessLogic accountBusinessLogic, IAccountDataService accountDataService)
 {
     _accountBusinessLogic = accountBusinessLogic;
     _accountDataService   = accountDataService;
 }
 public AccountController(AccountBusinessLogic accountBl)
 {
     _accountBl = accountBl;
 }
Example #3
0
 public FinancialAccountController()
 {
     _accountBusinessLogic = new AccountBusinessLogic(new AccountDataService(new BudgetManagerDbContext()));
     _accountDataService   = new AccountDataService(new BudgetManagerDbContext());
 }
Example #4
0
 public ManageController(ManageBusinessLogic manageBl, AccountBusinessLogic accountBl)
 {
     _manageBl  = manageBl;
     _accountBl = accountBl;
 }