// 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>> GetMyOrdersAsync(string userId); Task> GetMyOrderByIdAsync(Guid orderId, string userId); } }