Exemplo n.º 1
0
 public int Insert(TypeMeal tm)
 {
     context.inserTypeMeal(
         tm.tmea_name
         );
     return(context.SaveChanges());
 }
Exemplo n.º 2
0
 public int Update(TypeMeal tm)
 {
     context.updateTypeMeal(
         tm.id_tmea,
         tm.tmea_name
         );
     return(context.SaveChanges());
 }