using AsbCloudApp.Data.SAUB; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface ISetpointsService { Task InsertAsync(SetpointsRequestDto setpoints, CancellationToken token); Task> GetAsync(int idWell, CancellationToken token); Task> GetForPanelAsync(string uid, CancellationToken token); Task TryDelete(int id, CancellationToken token); Task UpdateStateAsync(SetpointsRequestDto setpointsRequestDto, CancellationToken token); IEnumerable GetSetpointsNames(); } }