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

            model.GetMeterDetailsForCustomer(customerId);
            ViewBag.currentAddressForJS = model.Customer.Address;

            return(View(model));
        }