public void DeleteCategory(string cid) { Category c = _context.Category.Find(cid); _context.Remove(c); _context.SaveChanges(); }
public void DeleteCategories(string catid) { Category catobj = _context.Category.Find(catid); _context.Remove(catobj); _context.SaveChanges(); }
public void DeleteCategory(string categoryid) { Category c = conn.Category.Find(categoryid); conn.Remove(c); conn.SaveChanges(); }
public void DeleteCategory(int Cid) { Category c = _context.Category.SingleOrDefault(e => e.Cid == Cid); _context.Remove(c); _context.SaveChanges(); }
public void DeleteCat(int id) { Category i = _context.Category.Find(id); _context.Remove(i); _context.SaveChanges(); }
public void Deleteitem(string Iid) { Items items = _context.Items.Find(Iid); _context.Remove(items); _context.SaveChanges(); }
public void Deleteitems(int Itemid) { Items i = _context.Items.Find(Itemid); _context.Remove(i); _context.SaveChanges(); }
public void DeleteItem(string id) { Items item = _context.Items.Find(id); _context.Remove(item); _context.SaveChanges(); }
public void Deletefromcart(string cartid) { Cart cartobj = _context.Cart.Find(cartid); _context.Remove(cartobj); _context.SaveChanges(); }
public void DeleteFromCart(int id) { Cart c = _context.Cart.Find(id); _context.Remove(c); _context.SaveChanges(); }
public bool DeletCategory(int Cid) { CategoryModel cat = new CategoryModel() { Cid = Cid }; Category c = new Category(); cat.Cid = c.Cid; var x = _context.Category.Find(Cid); _context.Remove(x); var z = _context.SaveChanges(); if (z > 0) { return(true); } else { return(false); } }