forked from ddrilling/AsbCloudServer
35cd538b1d
Add generic TelemetryDataController; Add TelemetryDataSpin and model; Add migration;
13 lines
330 B
C#
13 lines
330 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ISaubDataCache
|
|
{
|
|
TelemetryAnalysisDto CurrentAnalysis { get; set; }
|
|
IEnumerable<TelemetryDataSaubDto> GetOrCreateCache(int telemetryId);
|
|
void AddData(TelemetryDataSaubDto data);
|
|
}
|
|
}
|