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