public Guid AddNewAuthor(AuthorCreateDTO author)
 {
     return(authorRepository.AddNewAuthor(mapper.Map <Author>(author)));
 }