forked from ddrilling/AsbCloudServer
9 lines
188 B
C#
9 lines
188 B
C#
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface ILastDataService<Tdto>
|
|||
|
{
|
|||
|
Tdto Get(int idWell, int idCategory);
|
|||
|
int Upsert(int idCategory, Tdto value);
|
|||
|
}
|
|||
|
}
|