Ejemplo n.º 1
0
 public static string deletecompany(int cpId)
 {
     try
     {
         using (var db = new smartcheckEntities())
         {
             var cp = new company()
             {
                 id = cpId
             };
             db.Entry(cp).State = EntityState.Deleted;
             db.SaveChanges();
         }
         return(string.Empty);
     }
     catch (Exception ex)
     {
         return("Thất bại: " + ex.Message);
     }
 }
Ejemplo n.º 2
0
 //Company
 public static string addUpdatecompany(company cp)
 {
     try
     {
         using (var db = new smartcheckEntities())
         {
             if (cp.id == 0)
             {
                 db.companies.Add(cp);
             }
             else
             {
                 db.Entry(cp).State = EntityState.Modified;
             }
             db.SaveChanges();
         }
         return(string.Empty);
     }
     catch (Exception ex)
     {
         return("Thất bại: " + ex.Message);
     }
 }