private static void PrintEmployeeLz()
        {
            SingletonLazy fromEmployee = SingletonLazy.GetInstance;

            fromEmployee.Print("from employee");
        }
        //test lazy singleton
        private static void PrintStudentLz()
        {
            SingletonLazy fromStudent = SingletonLazy.GetInstance;

            fromStudent.Print("from student");
        }