Ejemplo n.º 1
0
            public static EPaymentType MPFEmployeeVoluntaryContributionPaymentType(DatabaseConnection dbConn)
            {
                EPaymentType paymentType = GetPaymentType(dbConn, "MPFVCEE");

                if (paymentType == null)
                {
                    paymentType = GetPaymentType(dbConn, "TOPUPEE");
                }
                return(paymentType);
            }
Ejemplo n.º 2
0
            public static EPaymentType MPFEmployeeMandatoryContributionPaymentType(DatabaseConnection dbConn)
            {
                EPaymentType paymentType = GetPaymentType(dbConn, "MPFMCEE");

                if (paymentType == null)
                {
                    paymentType = GetPaymentType(dbConn, "MPFEE");
                }
                return(paymentType);
            }