test upload bild
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 22s

This commit is contained in:
Tizian.Breuch
2025-11-07 10:30:52 +01:00
parent 4d4d7b730a
commit 3f1874f7c2
3 changed files with 9 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ namespace Webshop.Domain.Interfaces
Task<Product?> GetBySlugAsync(string slug);
Task AddProductAsync(Product product);
Task<Product?> GetProductByIdForUpdateAsync(Guid id); // NEU
Task UpdateProductAsync(); // GE<47>NDERT (parameterlos)
Task UpdateProductAsync(Product product);
Task DeleteProductAsync(Guid id);
}
}