public ActionResult EditCustomerProperty(CustomerPropertyModel model)
        {
            var result = _customerPropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
        public ActionResult AddCustomerProperty(CustomerPropertyModel model)
        {
            var result = _customerPropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }