2021-08-09 15:41:42 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
2021-06-24 13:02:31 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface ISaubDataCache
|
|
|
|
|
{
|
2021-08-09 14:01:57 +05:00
|
|
|
|
TelemetryAnalysisDto CurrentAnalysis { get; set; }
|
2021-09-14 17:17:33 +05:00
|
|
|
|
IEnumerable<TelemetryDataSaubDto> GetOrCreateCache(int telemetryId);
|
|
|
|
|
void AddData(TelemetryDataSaubDto data);
|
2021-06-24 13:02:31 +05:00
|
|
|
|
}
|
|
|
|
|
}
|