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