2022-08-15 15:08:17 +05:00
|
|
|
|
using AsbCloudApp.Data.Subsystems;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services.Subsystems
|
2022-07-14 03:47:11 +05:00
|
|
|
|
{
|
2022-08-15 15:08:17 +05:00
|
|
|
|
#nullable enable
|
|
|
|
|
public interface ISubsystemService
|
2022-07-14 03:47:11 +05:00
|
|
|
|
{
|
2022-08-15 15:08:17 +05:00
|
|
|
|
Task<IEnumerable<SubsystemDto>?> GetSubsystemAsync(int? idWell, CancellationToken token);
|
2022-07-14 03:47:11 +05:00
|
|
|
|
}
|
2022-08-15 15:08:17 +05:00
|
|
|
|
#nullable disable
|
2022-07-14 03:47:11 +05:00
|
|
|
|
}
|