Update LiteDb, but KO bdd

This commit is contained in:
Sébastien André
2020-02-03 18:14:51 +01:00
parent 55ff52fd19
commit e19fc02a6f
17 changed files with 153 additions and 1071 deletions

View File

@@ -7,18 +7,18 @@ namespace skydiveLogs_api.Data.Interface
{
public interface IDataProvider
{
LiteCollection<T> GetCollection<T>();
ILiteCollection<T> GetCollection<T>();
void Close();
LiteCollection<Aircraft> CollOfAircraft { get; }
ILiteCollection<Aircraft> CollOfAircraft { get; }
LiteCollection<DropZone> CollOfDropZone { get; }
ILiteCollection<DropZone> CollOfDropZone { get; }
LiteCollection<Gear> CollOfGear { get; }
ILiteCollection<Gear> CollOfGear { get; }
LiteCollection<JumpType> CollOfJumpType { get; }
ILiteCollection<JumpType> CollOfJumpType { get; }
LiteCollection<Jump> CollOfJump { get; }
ILiteCollection<Jump> CollOfJump { get; }
}
}