Ejemplo n.º 1
0
 public int Insert(TypeRest tm)
 {
     context.inserTypeMeal(
         tm.trest_name
         );
     return(context.SaveChanges());
 }
Ejemplo n.º 2
0
 public int Update(TypeRest tm)
 {
     context.updateTypeMeal(
         tm.id_trest,
         tm.trest_name
         );
     return(context.SaveChanges());
 }