Esempio n. 1
0
 public HomeController() {
     accountService = new AccountService(db);
 }
Esempio n. 2
0
 public SchoolController()
 {
     accountService = new AccountService(db);
     schoolService = new SchoolService(db);
 }
Esempio n. 3
0
 public InvestorController()
 {
     accountService = new AccountService(db);
     investorService = new InvestorService(db);
     investmentService = new InvestmentService(db);
 }