Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
 private void goToCustomerService()
 {
     CustomerService customerService = new CustomerService();
     customerService.setUserCardID(userCardID.Text);
     customerService.ShowDialog();
 }
Exemplo n.º 2
0
 private void go_Click(object sender, EventArgs e)
 {
     this.Hide();
     CustomerService service = new CustomerService();
     service.Show();
 }