2024-08-15 07:56:25 -05:00
|
|
|
using FluentResults;
|
|
|
|
|
|
2024-08-12 12:42:16 -05:00
|
|
|
namespace SanctionsSearch.Worker.Interfaces;
|
|
|
|
|
|
|
|
|
|
interface IOfacFileService
|
|
|
|
|
{
|
2024-08-15 07:56:25 -05:00
|
|
|
Task<Result<Stream>> GetSdnFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetAddressFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetAltNamesFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetCommentsFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetConPrimaryNameFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetConAddressesFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetConAltNamesFileAsync();
|
|
|
|
|
Task<Result<Stream>> GetConCommentsFileAsync();
|
2024-08-12 12:42:16 -05:00
|
|
|
}
|