// 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 { Task> GetAllAsync(); Task GetByIdAsync(Guid id); Task AddAsync(PaymentMethod paymentMethod); Task UpdateAsync(PaymentMethod paymentMethod); Task DeleteAsync(Guid id); } }