2021-08-02 11:39:39 +05:00
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface ILastDataService<Tdto>
|
|
|
|
|
{
|
|
|
|
|
Tdto Get(int idWell, int idCategory);
|
2021-08-02 12:23:18 +05:00
|
|
|
|
int Upsert(int idWell, int idCategory, Tdto value);
|
2021-08-02 11:39:39 +05:00
|
|
|
|
}
|
|
|
|
|
}
|