コード例 #1
0
        public ActionResult EditEmployeeProperty(EmployeePropertyModel model)
        {
            var result = _employeePropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
コード例 #2
0
        public ActionResult AddEmployeeProperty(EmployeePropertyModel model)
        {
            var result = _employeePropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }