コード例 #1
0
ファイル: InvestorController.cs プロジェクト: qds-dat/Edstart
 public InvestorController()
 {
     accountService = new AccountService(db);
     investorService = new InvestorService(db);
     investmentService = new InvestmentService(db);
 }
コード例 #2
0
ファイル: AuctionController.cs プロジェクト: qds-dat/Edstart
 public AuctionController()
 {
     investorService = new InvestorService(db);
     investmentService = new InvestmentService(db);
 }