Пример #1
0
        private static void PrintEmployee()
        {
            Singleton fromEmp = Singleton.GetInstance;

            fromEmp.getDetails("Hi, I'm an employee at NCR");
        }
Пример #2
0
        private static void PrintStudent()
        {
            Singleton fromStu = Singleton.GetInstance;

            fromStu.getDetails("Hey ,I'm a student Intern");
        }