public IActionResult Create(Book book) { if (!_dataStorage.CreateBook(book)) { return(BadRequest("Book already exists")); } return(Ok()); }