Exemple #1
0
 public HomeController() {
     accountService = new AccountService(db);
 }
Exemple #2
0
 public SchoolController()
 {
     accountService = new AccountService(db);
     schoolService = new SchoolService(db);
 }
 public InvestorController()
 {
     accountService = new AccountService(db);
     investorService = new InvestorService(db);
     investmentService = new InvestmentService(db);
 }