public ActionResult Details(int?id)
        {
            var model = BookBl.GetDetails(id);

            return(View(model));
        }