Files
ShopSolution-backend/Webshop.Application/Services/Customers/Interfaces/IOrderService.cs
Tizian.Breuch 1f28c189ce order
2025-09-25 16:23:39 +02:00

15 lines
492 B
C#

// src/Webshop.Application/Services/Customers/IOrderService.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application;
using Webshop.Application.DTOs.Orders;
namespace Webshop.Application.Services.Customers
{
public interface IOrderService
{
Task<ServiceResult<IEnumerable<OrderSummaryDto>>> GetMyOrdersAsync(string userId);
Task<ServiceResult<OrderDetailDto>> GetMyOrderByIdAsync(Guid orderId, string userId);
}
}