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

19 lines
508 B
C#
Raw Normal View History

using System.IO;
2022-03-17 16:56:13 +05:00
using System.Threading;
using System.Threading.Tasks;
2024-08-19 10:01:07 +05:00
namespace AsbCloudApp.Services;
/// <summary>
/// Сервис формирования Сетевого графика.
/// </summary>
public interface IScheduleReportService
2022-03-17 16:56:13 +05:00
{
2022-08-09 11:10:01 +05:00
/// <summary>
2024-08-19 10:01:07 +05:00
/// Сформировать.
2022-08-09 11:10:01 +05:00
/// </summary>
2024-08-19 10:01:07 +05:00
/// <param name="idWell"></param>
/// <param name="token"></param>
/// <returns></returns>
Task<Stream> MakeReportAsync(int idWell, CancellationToken token = default);
2022-03-17 16:56:13 +05:00
}