Example #1
0
        public ActionResult EditCustomer(int customerId)
        {
            var model = new CustomerModel();

            Customer customerToEdit = model.GetCustomerForEdit(customerId);

            return(View(customerToEdit));
        }