コード例 #1
0
 public UserRepository(MysqlDBContext context, ContestRepository repo, CountryRepository crepo, InstitutionRepository instrepo)
 {
     this._context         = context;
     this._contestRepo     = repo;
     this._countryRepo     = crepo;
     this._institutionRepo = instrepo;
 }
コード例 #2
0
 public ContestRepository(CountryRepository countryRepo, MysqlDBContext context)
 {
     this._context     = context;
     this._countryRepo = countryRepo;
 }
コード例 #3
0
 public InstitutionRepository(MysqlDBContext context, CountryRepository repo)
 {
     this._context     = context;
     this._countryRepo = repo;
 }