14 lines
311 B
C#
14 lines
311 B
C#
|
|
using Meezi.API.Services;
|
||
|
|
|
||
|
|
namespace Meezi.API.Tests;
|
||
|
|
|
||
|
|
internal sealed class NoOpLoyaltyService : ILoyaltyService
|
||
|
|
{
|
||
|
|
public Task ApplyEarnOnOrderPaidAsync(
|
||
|
|
string cafeId,
|
||
|
|
string? customerId,
|
||
|
|
decimal paidAmount,
|
||
|
|
CancellationToken ct = default) =>
|
||
|
|
Task.CompletedTask;
|
||
|
|
}
|