Update ubout DataProvider

This commit is contained in:
Sébastien André
2019-11-11 01:18:23 +01:00
parent 2e6ec6ec85
commit 1f0be68e58
4 changed files with 33 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
using LiteDB;
using skydiveLogs_api.Model;
namespace skydiveLogs_api.Data.Interface
{
@@ -8,5 +10,15 @@ namespace skydiveLogs_api.Data.Interface
LiteCollection<T> GetCollection<T>();
void Close();
LiteCollection<Aircraft> CollOfAircraft { get; }
LiteCollection<DropZone> CollOfDropZone { get; }
LiteCollection<Gear> CollOfGear { get; }
LiteCollection<JumpType> CollOfJumpType { get; }
LiteCollection<Jump> CollOfJump { get; }
}
}