DD.WellWorkover.Cloud/AsbCloudApp/Services/ILastDataService.cs
2021-08-02 18:35:36 +05:00

9 lines
201 B
C#

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