using LiteDB; using skydiveLogs_api.Domain; namespace skydiveLogs_api.Infrastructure.Interfaces { 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; } ILiteCollection CollOfImage { get; } ILiteCollection CollOfFavoriteDropZone { get; } } }