public void DeleteBrand(Brand brand) { _bmesDbContext.Brands.Remove(brand); _bmesDbContext.SaveChanges(); }
public void DeleteCategory(Category category) { _bmesDbContext.Categories.Remove(category); _bmesDbContext.SaveChanges(); }
void IProductRepository.DeleteProduct(Product product) { _bmesDbContext.Products.Remove(product); _bmesDbContext.SaveChanges(); }