public Book Update(Book entity)
        {
            context.Update(entity);
            context.SaveChanges();

            return(entity);
        }
Exemple #2
0
        public Author Update(Author entity)
        {
            context.Update(entity);
            context.SaveChanges();

            return(entity);
        }