This commit is contained in:
Tizian.Breuch
2025-07-22 08:59:31 +02:00
parent 7100949276
commit 9429468424
7 changed files with 16 additions and 12 deletions

View File

@@ -10,5 +10,6 @@ namespace Webshop.Domain.Interfaces
Task AddProductAsync(Product product);
Task UpdateProductAsync(Product product);
Task DeleteProductAsync(Guid id);
Task<bool> ProductExistsBySlugAsync(string slug);
}
}