private void btncancel_Click(object sender, EventArgs e)
        {
            EmployeeSalary em = EmployeeSalary.getInstance();

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