Пример #1
0
        private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            ShowAllEmployee l = ShowAllEmployee.getInstance();

            l.Show();
            this.Hide();
        }
Пример #2
0
 public static ShowAllEmployee getInstance()
 {
     if (l == null)
     {
         l = new ShowAllEmployee();
         l.Show();
         return(l);
     }
     else
     {
         return(l);
     }
 }