Ejemplo n.º 1
0
        public ActionResult EditEmployeeProperty(EmployeePropertyModel model)
        {
            var result = _employeePropertyService.UpdateService.UpdateColumn(model);

            return(BoolResult(result));
        }
Ejemplo n.º 2
0
        public ActionResult AddEmployeeProperty(EmployeePropertyModel model)
        {
            var result = _employeePropertyService.AddService.AddColumn(model);

            return(BoolResult(result));
        }