//GET: Details/5
 public ActionResult Details(int id)
 {
     Order order = _orderBll.Details(id);
     return View(order);
 }