Files
ShopSolution-backend/Webshop.Application/Services/Public/Interfaces/IDiscountService.cs
Tizian.Breuch ee5abfd829 checkout
2025-11-26 17:02:18 +01:00

15 lines
411 B
C#

// src/Webshop.Application/Services/Public/Interfaces/IDiscountService.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Domain.Entities;
namespace Webshop.Application.Services.Public.Interfaces
{
public interface IDiscountService
{
Task<DiscountCalculationResult> CalculateDiscountAsync(List<OrderItem> orderItems, string? couponCode);
}
}