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