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