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