Exemplo n.º 1
0
 public bool UpdateCountry(Country country)
 {
     _bookDbContext.Update(country);
     return Save();
 }
Exemplo n.º 2
0
 public bool UpdateCategory(Category category)
 {
     _categoryDbContext.Update(category);
     return(Save());
 }
Exemplo n.º 3
0
 public bool UpdateAuthor(Review review)
 {
     _authorDbContext.Update(review);
     return(Save());
 }
Exemplo n.º 4
0
 public bool UpdateReview(Review review)
 {
     _reviewDbContext.Update(review);
     return(Save());
 }