public ImportBookForm(int bookID) { InitializeComponent(); this.bookID = bookID; searchBookPanel = new SearchBookPanel(this); Controls.Add(searchBookPanel); }
public CreateBillForm(Employee e, FrmMenu container) { EMPLOYEE = e; this.container = container; InitializeComponent(); searchBookPanel = new SearchBookPanel(this); Controls.Add(searchBookPanel); }
public ViewBookForm(Employee e, FrmMenu menuForm) { this.EMPLOYEE = e; this.menuForm = menuForm; InitializeComponent(); this.searchBookPanel = new SearchBookPanel(this); panel1.Controls.Add(searchBookPanel); }