public static DepartmentInfo getInstance() { if (_instance == null) { lock (obj) { if (_instance == null) { _instance = new DepartmentInfo(); } } } return _instance; }