using System.IO; using AsbCloudApp.Data; using AsbCloudApp.Requests.ParserOptions; namespace AsbCloudApp.Services; /// /// Сервис парсинга /// /// public interface IParserService : IParserService where TDto : class, IId { /// /// Распарсить файл /// /// /// /// ParserResultDto Parse(Stream file, TOptions options) where TOptions : IParserOptionsRequest; /// /// Получение шаблона для заполнения /// /// Stream GetTemplateFile(); } /// /// Сервис парсинга(интерфейс маркер) /// public interface IParserService { }