using System.IO; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services; /// /// Сервис формирования Сетевого графика. /// public interface IScheduleReportService { /// /// Сформировать. /// /// /// /// Task MakeReportAsync(int idWell, CancellationToken token = default); }