11 lines
262 B
C#

using System;
using System.Threading.Tasks;
using Compliance.Domain.Models;
namespace Compliance.Infrastructure.Repositories
{
public interface IClientRepository : IDisposable
{
Task<Client?> GetClientInformationAsync(string smartCode);
}
}