feat: implement ofac file service

This commit is contained in:
Stevan Freeborn
2024-08-15 07:56:25 -05:00
parent 0353852330
commit f9e6e54db6
5 changed files with 418 additions and 1 deletions
@@ -1,5 +1,15 @@
using FluentResults;
namespace SanctionsSearch.Worker.Interfaces;
interface IOfacFileService
{
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();
}