public async Task Handle(ProductPublishedToCategory message) { var prod = new ProductSummaryDto(); //Construire la liste des catégories _productsRepository.Insert(prod); }
// Garder le compte des produits publiés // Mettre à jour le nombre de produits dans la hiérarchie de catégories parentes public async Task Handle(ProductPublishedToCategory message) { var cat = _categoryRepository.GetById(message.Id); cat.VisibleProducts += 1; cat.TotalVisibleProducts += 1; _categoryRepository.Update(cat); Guid?parentId = cat.ParentId; while (parentId != null) { var parentCat = _categoryRepository.GetById(parentId.Value); parentCat.TotalVisibleProducts += 1; _categoryRepository.Update(parentCat); parentId = parentCat.ParentId; } }