forked from ddrilling/AsbCloudServer
eugeniy_ivanov
20f79f461f
- В SubsystemDto свойство Subsystem переименовано в SubsystemName - миграция для заполнения Subsystem - метод bsystemOperationTimeService.GetSubsystemByIdWellAsync перенесен в SubsystemService.
15 lines
357 B
C#
15 lines
357 B
C#
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
|
|
}
|