public async Task <Category> UpsertCategoryAsync(Category category)
 {
     return(await _upsertCategoryCommand.UpsertCategoryAsync(category));
 }
Пример #2
0
        public async Task <Category> UpsertCategoryAsync(Category category)
        {
            await _updateModificationHashQuery.Run();

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