DD.WellWorkover.Cloud/AsbCloudApp/Services/IScheduleReportService.cs

11 lines
250 B
C#
Raw Normal View History

2022-03-17 16:56:13 +05:00
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
public interface IScheduleReportService
{
Task<Stream> MakeReportAsync(int idWell, CancellationToken token = default);
}
}