// GET: Receipt public ActionResult ViewByCustomer(int id) { var Model = ReceiptManager.GetAllForCustomer(id); ViewBag.cityId = CustomerManager.Get(id).CityID; ViewBag.customerId = id; return(View(Model)); }