public async Task <IActionResult> GetAuthors()
        {
            var authors = manager.GetAuthors();

            return(Ok(authors));
        }