using AsbCloudApp.Data; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IMeasureService { Task> GetCategoriesAsync(CancellationToken token); Task GetLastAsync(int idWell, int idCategory, CancellationToken token); Task> GetHisoryAsync(int idWell, int idCategory, CancellationToken token); Task InsertAsync(int idWell, MeasureDto data, CancellationToken token); Task UpdateAsync(int idWell, MeasureDto data, CancellationToken token); Task MarkAsDeleteAsync(int idWell, int idData, CancellationToken token); Task DeleteAsync(int idWell, int idData, CancellationToken token); } }