DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs

23 lines
550 B
C#
Raw Normal View History

2022-11-03 16:57:41 +05:00
using AsbCloudDb.Model;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections;
using System;
using AsbCloudApp.Services;
#nullable enable
namespace AsbCloudInfrastructure.Services.SAUB
{
public class TelemetryDataCache
{
private readonly ConcurrentDictionary<int, Dictionary<int, IEnumerable>> caches;
private static TelemetryDataCache? instance;
public TelemetryDataCache(IAsbCloudDbContext db)
{
caches = new ();
}
}
}
#nullable disable