public ActionResult EditBus(Bus bus) { try { _busRepository.EditBus(bus); return(RedirectToAction("Index")); } catch { return(View(bus)); } }