public GuideRepository(ESportSchoolDbContext context) : base(context)
 {
 }
Exemple #2
0
 public TeamRepository(ESportSchoolDbContext context) : base(context)
 {
 }
Exemple #3
0
 public CommentRepository(ESportSchoolDbContext context) : base(context)
 {
 }
 public TrainingRepository(ESportSchoolDbContext context) : base(context)
 {
 }
 public ReviewRepository(ESportSchoolDbContext context) : base(context)
 {
 }
Exemple #6
0
 public GameProfileRepository(ESportSchoolDbContext context) : base(context)
 {
 }
Exemple #7
0
 public ScheduleIntervalRepository(ESportSchoolDbContext context) : base(context)
 {
 }
Exemple #8
0
 protected Repository(ESportSchoolDbContext context)
 {
     _db = context;
 }