public JsonResult DestroyBook(int id)
 {
     _bookService.DestroyBook(id);
     return(Json(true, JsonRequestBehavior.AllowGet));
 }