public async Task <IActionResult> GetById([FromRoute] string id)
        {
            var author = manager.GetAuthorById(id);

            return(Ok(author));
        }