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