forked from ddrilling/AsbCloudServer
13 lines
320 B
C#
13 lines
320 B
C#
using AsbCloudApp.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ISaubDataCache
|
|
{
|
|
TelemetryAnalysisDto CurrentAnalysis { get; set; }
|
|
IEnumerable<DataSaubBaseDto> GetOrCreateCache(int telemetryId);
|
|
void AddData(DataSaubBaseDto data);
|
|
}
|
|
}
|