public async Task DeleteCategoryAsync(string categoryId)
 {
     await _deleteCategoryCommand.DeleteCategoryAsync(categoryId);
 }
Exemplo n.º 2
0
        public async Task DeleteCategoryAsync(string categoryId)
        {
            await _updateModificationHashQuery.Run();

            await _deleteCategoryCommand.DeleteCategoryAsync(categoryId);
        }