Example #1
0
 public static void Delete(Cliver.Fhr.ProductOffice.Models.ProductOfficeEntities db, int product_id, bool delete_group = false)
 {
     db.Prices.RemoveRange(db.Prices.Where(i => i.ProductId == product_id));
     if (delete_group)
     {
         db.Products.RemoveRange(db.Products.Where(i => i.MainProductId == product_id));
     }
     db.Products.RemoveRange(db.Products.Where(i => i.Id == product_id));
     db.SaveChanges();
 }
Example #2
0
 public static void Delete(Cliver.Fhr.ProductOffice.Models.ProductOfficeEntities db, int product_id)
 {
     //db.SaveChanges();
 }