25 lines
484 B
C#
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; }
|
|
}
|
|
}
|