コード例 #1
0
 public InvBalanceRepo(
     ApplicationDbContext db,
     IUserPortfolioSharesRepo userPortfolioSharesRepo,
     IGzTransactionRepo gzTransactionRepo,
     IUserPortfolioRepo custPortfolioRepo,
     IConfRepo confRepo,
     IUserRepo userRepo)
 {
     this.db = db;
     this.userPortfolioSharesRepo = userPortfolioSharesRepo;
     this.gzTransactionRepo       = gzTransactionRepo;
     this.confRepo = confRepo;
     this.userRepo = userRepo;
 }
コード例 #2
0
ファイル: GzTransactionRepo.cs プロジェクト: blewater/gz
 public GzTransactionRepo(ApplicationDbContext db, IConfRepo confRepo)
 {
     this._db      = db;
     this.confRepo = confRepo;
 }
コード例 #3
0
 public UserPortfolioRepo(ApplicationDbContext db, IConfRepo confRepo, IUserRepo userRepo)
 {
     this.db       = db;
     this.confRepo = confRepo;
     this.userRepo = userRepo;
 }