コード例 #1
0
        public ActionResult EditCustomerProperty(CustomerPropertyModel model)
        {
            var result = _customerPropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
コード例 #2
0
        public ActionResult AddCustomerProperty(CustomerPropertyModel model)
        {
            var result = _customerPropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }