public IActionResult ListAuthors()
        {
            try
            {
                AuthorsService authorsservice = new AuthorsService();

                return(Ok(authorsservice.GetListAut()));
            }
            catch (Exception e)
            {
                throw e;
            }
        }