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