}
private void fillTableSearch(String author_name){
AuthorModel authorModel = new AuthorModel();
List<Author> authors = authorModel.whereFullName(author_name);
AuthorTableModel authorTableModel = new AuthorTableModel(authors);
jTable1.setModel(authorTableModel);
}