DD.WellWorkover.Cloud/AsbCloudApp/Services/Subsystems/ISubsystemService.cs

15 lines
357 B
C#
Raw Normal View History

using AsbCloudApp.Data.Subsystems;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services.Subsystems
{
#nullable enable
public interface ISubsystemService
{
Task<IEnumerable<SubsystemDto>?> GetSubsystemAsync(int? idWell, CancellationToken token);
}
#nullable disable
}