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