public bool UpdateCountry(Country country) { _bookDbContext.Update(country); return Save(); }
public bool UpdateCategory(Category category) { _categoryDbContext.Update(category); return(Save()); }
public bool UpdateAuthor(Review review) { _authorDbContext.Update(review); return(Save()); }
public bool UpdateReview(Review review) { _reviewDbContext.Update(review); return(Save()); }