using System.IO; using AsbCloudApp.Data; using AsbCloudApp.Requests.Import; namespace AsbCloudApp.Services; /// /// Сервис парсинга файлов /// /// /// public interface IParserService : IParserService where TDto : class, IId where TOptions : ParserOptionsRequestBase { /// /// Распарсить файл /// /// /// /// ParserResultDto Parse(Stream file, TOptions options); } /// /// Сервис парсинга файлов /// public interface IParserService { }