public JsonResult ViewBookDetails(string bookID)
 {
     mvcTestingDB mvcDB = new mvcTestingDB();
     mvcTestingModel mvcModel = new mvcTestingModel();
     mvcModel.ViewDetails = mvcDB.allBooksDetailsList(bookID);
     return Json(mvcModel);
 }