Files
ShopSolution-backend/Webshop.Application/Services/Customers/Interfaces/ICheckoutService.cs
Tizian.Breuch f91fc13a87 checkout
2025-08-12 13:32:25 +02:00

12 lines
413 B
C#

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