13 lines
391 B
C#
13 lines
391 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<decimal> CalculateDiscountAsync(List<OrderItem> orderItems, string? couponCode);
|
|
}
|
|
} |