Exemplo n.º 1
0
 public TEntity Get(int id)
 {
     using (var context = new GymPass())
     {
         return(context.Set <TEntity>().Find(id));
     }
 }
Exemplo n.º 2
0
 public void Insert(TEntity entity)
 {
     using (var context = new GymPass())
     {
         context.Set <TEntity>().Add(entity);
         context.SaveChanges();
     }
 }