Exemplo n.º 1
0
 public static void Create(Comm_Cosmetology cosmetology)
 {
     using (Entities db = new Entities())
     {
         db.Comm_Cosmetology.Add(cosmetology);
         db.SaveChanges();
     }
 }
Exemplo n.º 2
0
 public static void Update(Comm_Cosmetology cosmetology)
 {
     using (Entities db = new Entities())
     {
         db.Entry(cosmetology).State = System.Data.Entity.EntityState.Modified;
         db.SaveChanges();
     }
 }