using System.IO; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services; /// /// Экспорт РТК /// public interface IProcessMapPlanExportService { /// /// Экспортировать РТК по скважине /// /// /// /// Task<(string FileName, Stream File)> ExportAsync(int idWell, CancellationToken token); }