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

9 lines
201 B
C#
Raw Normal View History

namespace AsbCloudApp.Services
{
public interface ILastDataService<Tdto>
{
Tdto Get(int idWell, int idCategory);
void Upsert(int idWell, int idCategory, Tdto value);
}
}