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; }