示例#1
0
        /// <summary>
        /// Lists the account names.
        /// </summary>
        /// <returns>The dataTable containing the AccountNames.</returns>
        public static DisbursementData.ListAccountNameDataTable F1210_DisbursementAccountNames()
        {
            DisbursementData disbursementData = new DisbursementData();
            Hashtable        ht = new Hashtable();

            Utility.LoadDataSet(disbursementData.ListAccountName, "f1213_pclst_AccountName", ht);
            return(disbursementData.ListAccountName);
        }
示例#2
0
        /// <summary>
        /// Gets the disbursement details.
        /// </summary>
        /// <param name="postDate">The post date.</param>
        /// <returns>Disbursement DataSet</returns>
        public static DisbursementData F1210_GetDisbursementDetails(DateTime postDate)
        {
            DisbursementData disbursementData = new DisbursementData();
            Hashtable        ht = new Hashtable();

            ht.Add("@PostDate", postDate);
            string[] tableName = new string[] { disbursementData.AgencyListing.TableName, disbursementData.SubFundsList.TableName };
            Utility.LoadDataSet(disbursementData, "f1210_pclst_Disbursement", ht, tableName);
            return(disbursementData);
        }