public ChampionshipGameQueries(NChampionsContext context)
 {
     _sqlConnection = new SqlConnection(context.Database.GetConnectionString());
     this.context   = context;
 }
 public ChampionshipRepository(NChampionsContext ctx)
 {
     _ctx = ctx;
 }
示例#3
0
 public TeamRepository(NChampionsContext ctx)
 {
     _ctx = ctx;
 }