public ActionResult ShowAllUtilityCharts(int customerId)
        {
            var model = new CustomerModel();

            model.GetAllUtilityDataForCustomer(customerId);

            ViewBag.currentAddressForJS = model.Customer.Address;

            return(View("~/Views/Chart/ShowAllUtilityCharts.cshtml", model));
        }