update packages

This commit is contained in:
2022-12-05 12:28:00 +01:00
parent 28e6f346f0
commit b5a050427b
11 changed files with 74 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
using System.Runtime.Serialization.Formatters.Binary;
namespace EscapeRoomEngine.Engine.Runtime.Measurements
{
// ReSharper disable once InconsistentNaming
public class SQLiteStorage : IMeasurementStorage
{
private BinaryFormatter _formatter;
public SQLiteStorage()
{
_formatter = new BinaryFormatter();
}
public void Save(MeasurementCollection measurements)
{
_formatter.Serialize();
}
public MeasurementCollection Load(int key)
{
throw new System.NotImplementedException();
}
}
}