public ActionResult Bills(Order model)
 {
     var bll = new OrderBLL();
     model.TotalPrice = bll.GetBills(model);
     return View(model);
 }