public ActionResult EditCustomer(int customerId) { var model = new CustomerModel(); Customer customerToEdit = model.GetCustomerForEdit(customerId); return(View(customerToEdit)); }