Exemple #1
0
        public void Dispose()
        {
            if (NPocoDb != null)
            {
                NPocoDb.Dispose();
                NPocoDb = null;
            }

            _claimTable = null;
        }
Exemple #2
0
 public ClaimStore(Database database)
 {
     NPocoDb     = database;
     _claimTable = new ClaimTable(database);
 }