示例#1
0
        private void showBookClicked(object sender, EventArgs e)
        {
            ShowRentBook showBook = new ShowRentBook(username, "b");

            showBook.Show();
        }
示例#2
0
        private void showRentsClicked(object sender, EventArgs e)
        {
            ShowRentBook showRent = new ShowRentBook(username, "r");

            showRent.Show();
        }