示例#1
0
 public Task <CategoryDto> UpdateAsync(Guid id, CategoryDto input)
 {
     return(_AppService.UpdateAsync(id, input));
 }
示例#2
0
 public Task <CategoryDto> CreateAsync(CategoryDto input)
 {
     return(_AppService.CreateAsync(input));
 }