using AsbCloudApp.Data; using AsbCloudApp.Requests.ParserOptions; namespace AsbCloudApp.Services.Parsers; /// /// Фабрика для создания сервиса парсинга /// /// /// public interface IParserFactory where TId : struct where TDto : class, IId { /// /// Создать парсер /// /// /// /// IParserService CreateParser(TId id) where TOptions : IParserOptionsRequest; }