using LiteDB; namespace skydiveLogs_api.Data.Interface { public interface IDataProvider { LiteCollection GetCollection(); void Close(); } }