/// <summary>
        /// F1214 the account names.
        /// </summary>
        /// <returns>the datatable contains the Account Names</returns>
        public static RefundManagementData.ListAccountNamesDataTable F1214_AccountNames()
        {
            RefundManagementData refundManagementData = new RefundManagementData();
            Hashtable            ht = new Hashtable();

            Utility.LoadDataSet(refundManagementData.ListAccountNames, "f1213_pclst_AccountName", ht);
            return(refundManagementData.ListAccountNames);
        }
        /// <summary>
        /// Lists the refund payments data.
        /// </summary>
        /// <param name="form">The form.</param>
        /// <param name="whereCondnSql">The where condn SQL.</param>
        /// <returns>refundManagementData</returns>
        public static RefundManagementData.ListRefundPaymentsDataTable ListRefundPaymentsData(int form, string whereCondnSql)
        {
            RefundManagementData refundManagementData = new RefundManagementData();
            Hashtable            ht = new Hashtable();

            if (form != 0)
            {
                ht.Add("@Form", form);
            }
            else
            {
                ht.Add("@Form", DBNull.Value);
            }

            ht.Add("@WhereCondnSql", whereCondnSql);

            Utility.LoadDataSet(refundManagementData.ListRefundPayments, "f1214_pclst_RefundPayments", ht);
            return(refundManagementData.ListRefundPayments);
        }