Files
Tizian.Breuch d4dae319f3 checkout
2025-09-25 16:15:00 +02:00

13 lines
404 B
C#

// 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<ServiceResult<OrderDetailDto>> CreateOrderAsync(CreateOrderDto orderDto, string? userId);
}
}