public IActionResult GetAllAuthors()
        {
            var authors = _authorsService.GetAllAuthors();

            return(Ok(authors));
        }