8 lines
286 B
C#
8 lines
286 B
C#
using AMREZ.EOP.Contracts.DTOs.Integrations.SCB.SlipVerification;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Infrastructures.Integrations.SCB.Clients;
|
|
|
|
public interface IScbSlipClient
|
|
{
|
|
Task<SlipVerificationEnvelope?> VerifyAsync(string transRef, string sendingBank, CancellationToken ct);
|
|
} |