checkout
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user