Пример #1
0
 public bool DeleteCountry(Country country)
 {
     _bookDbContext.Remove(country);
     return Save();
 }
Пример #2
0
 public bool DeleteCategory(Category category)
 {
     _categoryDbContext.Remove(category);
     return(Save());
 }
Пример #3
0
 public bool DeleteAuthor(Review review)
 {
     _authorDbContext.Remove(review);
     return(Save());
 }
Пример #4
0
 public bool DeleteReview(Review review)
 {
     _reviewDbContext.Remove(review);
     return(Save());
 }