public IActionResult Get(int id)
        {
            var book = _authorsRepository.GetById(id);

            if (book == null)
            {
                return(NotFound());
            }

            return(Ok(book));
        }