Exemplo n.º 1
0
 public ResponseResult Update(int id, [FromBody] SysACLCategory sysACLCategory)
 {
     sysACLCategory.Id = id;
     return(SysACLCategoryService.Update(sysACLCategory));
 }
Exemplo n.º 2
0
 public ResponseResult Add(SysACLCategory sysACLCategory)
 {
     return(SysACLCategoryService.Add(sysACLCategory));
 }