AVS-Carton-Shipment-Verifier/Services/IShipmentVerificationServic...

10 lines
271 B
C#

using AVSCartonShipmentVerifier.DTOs;
namespace AVSCartonShipmentVerifier.Services;
public interface IShipmentVerificationService
{
Task<VerificationResultDto> VerifyQrAsync(string rawQrValue, string? entryMethod, CancellationToken cancellationToken = default);
}