order
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user