public static EPaymentType MPFEmployeeVoluntaryContributionPaymentType(DatabaseConnection dbConn) { EPaymentType paymentType = GetPaymentType(dbConn, "MPFVCEE"); if (paymentType == null) { paymentType = GetPaymentType(dbConn, "TOPUPEE"); } return(paymentType); }
public static EPaymentType MPFEmployeeMandatoryContributionPaymentType(DatabaseConnection dbConn) { EPaymentType paymentType = GetPaymentType(dbConn, "MPFMCEE"); if (paymentType == null) { paymentType = GetPaymentType(dbConn, "MPFEE"); } return(paymentType); }