ttt
Some checks failed
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Failing after 19s

This commit is contained in:
Tizian.Breuch
2025-11-07 12:58:09 +01:00
parent 071e787014
commit 39a6800373
3 changed files with 9 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ namespace Webshop.Domain.Interfaces
Task<Product?> GetBySlugAsync(string slug);
Task AddProductAsync(Product product);
Task UpdateProductAsync(Product product);
Task SaveChangesAsync();
Task DeleteProductAsync(Guid id);
}
}