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