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