public BaseRepository(TallerIVDbContext db) { this.db = db; dbSet = db.Set <T>(); }
public BaseRepository() { this.db = TallerIVDbContext.Create(); dbSet = db.Set <T>(); }