예제 #1
0
        public Repository(ISqLitePath sqLitePath)
        {
            string databasePath = sqLitePath.GetDatabasePath(Constants.AppConstants.UserDbFileName);

            _database = new SQLiteConnection(databasePath);
            CreateRepository();
        }