public void getPreListData() {

    try {
      ApplicationProcessDAO objDAO = DAOFactory.getInstance().getApplicationProcessDAO();
      if (countryList == null) {
        countryList = objDAO.countryListData();
      }
      if (branchList == null) {
        branchList = objDAO.branchListData(issuerId);
      }
      if (customerTypeList == null) {
        customerTypeList = objDAO.customerTypeListData(issuerId);
      }

      if (maritalStatusList == null) {
        maritalStatusList = objDAO.maritalListData();
      }
      if (relationshipList == null) {
        relationshipList = objDAO.relationshipListData();
      }
      if (genderList == null) {
        genderList = objDAO.genderListData();
      }
      if (educationList == null) {
        educationList = objDAO.educationListData();
      }

      if (jobTypeList == null) {
        jobTypeList = objDAO.jobTypeListData();
      }

      if (jobStatusList == null) {
        jobStatusList = objDAO.jobStatusListData();
      }

      if (relationshipList == null) {
        relationshipList = objDAO.relationshipListData();
      }

      if (appCardProductList == null) {
        appCardProductList = objDAO.cardProductListData(issuerId);
      }
      if (appDocProofList == null) {
        appDocProofList = objDAO.documentProofList(issuerId);
      }

      if (currencyList == null) {
        currencyList = objDAO.issuerCurrencyListData();
      }

      if (cycleNoList == null) {
        cycleNoList = objDAO.cycleNoListData();
      }
    } catch (Exception e) {
      System.out.println(
          "Error while getting  PreListData in ApplicationProcessSetup:" + e.getMessage());
    }
  }
 public CTFProcessManager() throws Exception {
   objCtfProcessDAO = DAOFactory.getInstance().getCTFProcessDAO();
 }
 public ChLetterHistManager() throws Exception {
   objChLetterHistDAO = DAOFactory.getInstance().getChLetterHistDAO();
 }