Files
ShopSolution-backend/Webshop.Domain/Interfaces/IShippingMethodRepository.cs
Tizian.Breuch 3858375b66 order
2025-07-31 16:37:35 +02:00

17 lines
547 B
C#

// 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
{
Task<IEnumerable<ShippingMethod>> GetAllAsync();
Task<ShippingMethod?> GetByIdAsync(Guid id); // << HINZUFÜGEN >>
Task AddAsync(ShippingMethod shippingMethod);
Task UpdateAsync(ShippingMethod shippingMethod);
Task DeleteAsync(Guid id);
}
}