using LiteDB; using skydiveLogs_api.Model; namespace skydiveLogs_api.Data.Interface { public interface IDataProvider { LiteCollection GetCollection(); void Close(); LiteCollection CollOfAircraft { get; } LiteCollection CollOfDropZone { get; } LiteCollection CollOfGear { get; } LiteCollection CollOfJumpType { get; } LiteCollection CollOfJump { get; } } }