This commit is contained in:
Tizian.Breuch
2025-07-29 19:11:34 +02:00
parent 3907cba29d
commit 6fc6aaef3e
14 changed files with 375 additions and 31 deletions

View File

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