using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface ILastDataService { Task GetAsync(int idWell, int idCategory, CancellationToken token); Task UpsertAsync(int idWell, int idCategory, Tdto value, CancellationToken token); } }