public Book Update(Book entity) { context.Update(entity); context.SaveChanges(); return(entity); }
public Author Update(Author entity) { context.Update(entity); context.SaveChanges(); return(entity); }