Beispiel #1
0
 public BaseRepository(GoalingEntities db, DbSet <T> dbSet)
 {
     this.dbSet = dbSet;
     this.db    = db;
 }
Beispiel #2
0
 public BowlerRepository(GoalingEntities db) : base(db, db.Bowlers)
 {
     this.db = db;
 }