forked from ddrilling/AsbCloudServer
14 lines
351 B
C#
14 lines
351 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ILastDataService<Tdto>
|
|
{
|
|
Task<Tdto> GetAsync(int idWell, int idCategory,
|
|
CancellationToken token);
|
|
Task<int> UpsertAsync(int idWell, int idCategory, Tdto value,
|
|
CancellationToken token);
|
|
}
|
|
}
|