public IEnumerable <Book> GetAllForAuthor(int authorId)
 {
     return(_bookDal.GetAllForAuthor(authorId));
 }