This commit is contained in:
Tizian.Breuch
2025-08-12 13:32:25 +02:00
parent 3d206eda4e
commit f91fc13a87
8 changed files with 290 additions and 21 deletions

View File

@@ -1,16 +1,12 @@
// Auto-generiert von CreateWebshopFiles.ps1
// src/Webshop.Application/Services/Customers/Interfaces/ICheckoutService.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application.DTOs;
using Webshop.Application.DTOs.Auth;
using Webshop.Application.DTOs.Users;
using Webshop.Application.DTOs.Orders;
namespace Webshop.Application.Services.Customers.Interfaces
{
public interface ICheckoutService
{
// Fügen Sie hier Methodensignaturen hinzu
Task<(bool Success, OrderDetailDto? CreatedOrder, string? ErrorMessage)> CreateOrderAsync(CreateOrderDto orderDto, string userId);
}
}
}