Files
SkydiveLogs/Back/skydiveLogs-api.Data/Interface/IDataProvider.cs
2019-11-11 01:18:23 +01:00

25 lines
484 B
C#

using LiteDB;
using skydiveLogs_api.Model;
namespace skydiveLogs_api.Data.Interface
{
public interface IDataProvider
{
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; }
}
}