public IActionResult Delete([FromRoute] Guid categoryId)
 {
     _categoryAppService.DeleteCategory(UserId, categoryId);
     return(Ok());
 }
Example #2
0
 public async Task Delete(int id)
 {
     await _categoryService.DeleteCategory(id);
 }