public ImportBookForm(int bookID)
 {
     InitializeComponent();
     this.bookID     = bookID;
     searchBookPanel = new SearchBookPanel(this);
     Controls.Add(searchBookPanel);
 }
Пример #2
0
 public CreateBillForm(Employee e, FrmMenu container)
 {
     EMPLOYEE       = e;
     this.container = container;
     InitializeComponent();
     searchBookPanel = new SearchBookPanel(this);
     Controls.Add(searchBookPanel);
 }
Пример #3
0
 public ViewBookForm(Employee e, FrmMenu menuForm)
 {
     this.EMPLOYEE = e;
     this.menuForm = menuForm;
     InitializeComponent();
     this.searchBookPanel = new SearchBookPanel(this);
     panel1.Controls.Add(searchBookPanel);
 }