Exemple #1
0
 public static void Agregar(SAB_CP_CAT_LISTA lista)
 {
     using (var db = new SinabEntities())
     {
         db.SAB_CP_CAT_LISTA.AddObject(lista);
         db.SaveChanges();
     }
 }
Exemple #2
0
 public static void Actualizar(SAB_CP_CAT_LISTA lista)
 {
     using (var db = new SinabEntities())
     {
         var l = Obtener(db, lista.Id);
         if (l == null)
         {
             return;
         }
         l.Nombre = lista.Nombre;
         db.SaveChanges();
     }
 }