public async Task <IActionResult> Get()
        {
            var books = await _service.All();

            return(Ok(books));
        }