public GenericRepository()
 {
     db    = new RecipesDBEntities();
     table = db.Set <T>();
 }
Example #2
0
 public List <T> GetAll()
 {
     return(Context.Set <T>().ToList());
 }