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