payment
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// src/Webshop.Application/Services/Public/IPaymentMethodService.cs
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs.Payments; // Für PaymentMethodDto
|
||||
|
||||
namespace Webshop.Application.Services.Public
|
||||
{
|
||||
public interface IPaymentMethodService
|
||||
{
|
||||
/// <summary>
|
||||
/// Ruft alle aktiven Zahlungsmethoden ab, die im Checkout für den Kunden sichtbar sein sollen.
|
||||
/// </summary>
|
||||
/// <returns>Eine Liste von PaymentMethodDto mit öffentlichen Konfigurationsdaten.</returns>
|
||||
Task<IEnumerable<PaymentMethodDto>> GetAllActiveAsync();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user