// src/Webshop.Application/Services/Customers/Interfaces/ICheckoutService.cs using System; using System.Threading.Tasks; using Webshop.Application; using Webshop.Application.DTOs.Orders; namespace Webshop.Application.Services.Customers.Interfaces { public interface ICheckoutService { Task> CreateOrderAsync(CreateOrderDto orderDto, string? userId); } }