public MetaDataTable(IDbConnection dataBaseConnection,
                      AuthorTable authorTable,
                      TagsTable tagsTable) : base(dataBaseConnection)
 {
     _authorTable = authorTable;
     _tagsTable   = tagsTable;
 }
Exemple #2
0
 private void initTagTable()
 {
     _tagsTable = new TagsTable(_db_connection);
     _tagsTable.Init();
 }