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