public async Task <Category> UpsertCategoryAsync(Category category)
 {
     return(await _upsertCategoryCommand.UpsertCategoryAsync(category));
 }
Ejemplo n.º 2
0
        public async Task <Category> UpsertCategoryAsync(Category category)
        {
            await _updateModificationHashQuery.Run();

            return(await _upsertCategoryCommand.UpsertCategoryAsync(category));
        }