Exemplo n.º 1
0
        private void btncancel_Click(object sender, EventArgs e)
        {
            EmployeeSalary em = EmployeeSalary.getInstance();

            em.Show();
            this.Hide();
        }
Exemplo n.º 2
0
 public static EmployeeSalary getInstance()
 {
     if (uniqueInstance == null)
     {
         uniqueInstance = new EmployeeSalary();
     }
     return(uniqueInstance);
 }