DD.WellWorkover.Cloud/AsbCloudApp/Services/ILastDataService.cs

14 lines
346 B
C#
Raw Normal View History

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