private void ByAuthorButton_Click(object sender, EventArgs e)
        {
            Author author = Author_listBox.SelectedItem as Author;

            ShowAllBooks(bookService.BooksByAuthor(author));
            ShowAllBookCopies(bookCopyService.BooksByAuthor(author));
        }