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