Fix Redundance Reference
This commit is contained in:
@@ -16,4 +16,7 @@
|
||||
<ProjectReference Include="..\AMREZ.EOP.Domain\AMREZ.EOP.Domain.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using AMREZ.EOP.Contracts.DTOs.Payments.SlipVerification;
|
||||
|
||||
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Payments;
|
||||
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Payments.SlipVerification;
|
||||
|
||||
public interface IVerifyFromImageUseCase
|
||||
{
|
||||
|
||||
@@ -2,5 +2,5 @@ namespace AMREZ.EOP.Abstractions.Applications.UseCases.Payments.SlipVerification
|
||||
|
||||
public interface IQrDecoder
|
||||
{
|
||||
|
||||
string? TryDecodeText(byte[] imageBytes);
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user