This commit is contained in:
Tizian.Breuch
2025-07-31 16:37:35 +02:00
parent 2d93fda7e9
commit 3858375b66
9 changed files with 290 additions and 3349 deletions

View File

@@ -1,14 +1,17 @@
// Auto-generiert von CreateWebshopFiles.ps1
// src/Webshop.Domain/Interfaces/IShippingMethodRepository.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Domain.Entities;
namespace Webshop.Domain.Interfaces
{
public interface IShippingMethodRepository
{
// Fügen Sie hier Methodensignaturen hinzu
Task<IEnumerable<ShippingMethod>> GetAllAsync();
Task<ShippingMethod?> GetByIdAsync(Guid id); // << HINZUFÜGEN >>
Task AddAsync(ShippingMethod shippingMethod);
Task UpdateAsync(ShippingMethod shippingMethod);
Task DeleteAsync(Guid id);
}
}
}