コード例 #1
0
        public static TypeEmployeeList getInstance()
        {
            if (instance == null)
            {
                instance = new TypeEmployeeList();
            }

            return(instance);
        }
コード例 #2
0
 private Manager()
 {
     typeEmployees  = TypeEmployeeList.getInstance().getTypeEmployee();
     this.employees = new EmployeeList(typeEmployees);
 }