Example #1
0
 public void DeleteProduct(Product product)
 {
     _wormDbContext.Remove(product);
     _wormDbContext.SaveChanges();
 }
Example #2
0
 public void DeleteOrder(Order order)
 {
     _wormDbContext.Remove(order);
     _wormDbContext.SaveChanges();
 }
Example #3
0
 public void DeleteArtist(Artist artist)
 {
     _wormDbContext.Remove(artist);
     _wormDbContext.SaveChanges();
 }