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