forked from ddrilling/AsbCloudServer
11 lines
250 B
C#
11 lines
250 B
C#
|
using System.IO;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IScheduleReportService
|
|||
|
{
|
|||
|
Task<Stream> MakeReportAsync(int idWell, CancellationToken token = default);
|
|||
|
}
|
|||
|
}
|