Esempio n. 1
0
 public BaseRepository(TallerIVDbContext db)
 {
     this.db = db;
     dbSet   = db.Set <T>();
 }
Esempio n. 2
0
 public BaseRepository()
 {
     this.db = TallerIVDbContext.Create();
     dbSet   = db.Set <T>();
 }