public ActionResult GetCustomerAutList(int customerId)
        {
            var model       = new CustomerAuthorizedPopupModel();
            var customeraut = _customerAuthorizedService.GetCustomerById(customerId);

            if (customeraut == null)
            {
                return(PartialView("_CustomerAuthorizedPopup", model));
            }
            model.CustomerAuthorizedList = customeraut;
            return(PartialView("CustomerAuthorizedListPopup", model));
        }
        public ActionResult CustomerAuthorizedPopup()
        {
            var model = new CustomerAuthorizedPopupModel();

            return(PartialView("_CustomerAuthorizedPopup", model));
        }