/// <summary>
        /// F2550_s the state of the get configured.
        /// </summary>
        /// <returns></returns>
        public static F2550TaxRollCorrectionData F2550_GetConfiguredState()
        {
            F2550TaxRollCorrectionData ConfiguredState = new F2550TaxRollCorrectionData();
            Hashtable ht = new Hashtable();

            Utility.LoadDataSet(ConfiguredState.ConfiguredState, "f2550_pcget_ConfiguredStateAndAutoComplete", ht);
            return(ConfiguredState);
        }
        /// <summary>
        /// F2550_s the correction code.
        /// </summary>
        /// <returns></returns>
        public static F2550TaxRollCorrectionData F2550_CorrectionCode()
        {
            F2550TaxRollCorrectionData correctionCode = new F2550TaxRollCorrectionData();
            Hashtable ht = new Hashtable();

            Utility.LoadDataSet(correctionCode.ListCorrectionCode, "f2550_pclst_CorrectionCode", ht);
            return(correctionCode);
        }
        /// <summary>
        /// List attachment details.
        /// </summary>
        /// <param name="formId">The form id.</param>
        /// <param name="keyIds">The key ids.</param>
        /// <param name="userId">The user id.</param>
        /// <param name="moduleId">The module id.</param>
        /// <returns>Typed DataSet</returns>
        public static F2550TaxRollCorrectionData F2550_ListAttachmentDetails(int formId, string keyIds, int userId, int moduleId)
        {
            F2550TaxRollCorrectionData taxRollCorrectionData = new F2550TaxRollCorrectionData();
            Hashtable ht = new Hashtable();

            ht.Add("@Form", formId);
            ht.Add("@KeyIDs", keyIds);
            ht.Add("@UserID", userId);
            ht.Add("@ModuleID", moduleId);
            Utility.LoadDataSet(taxRollCorrectionData.ListAttachmentDetailsTable, "f2550_pcget_ParcelAttachment", ht);
            return(taxRollCorrectionData);
        }
        /// <summary>
        /// F2550_s the list parcel details.
        /// </summary>
        /// <param name="parcelId">The parcel id.</param>
        /// <param name="scheduleId">The schedule id.</param>
        /// <returns>The tax roll correction dataset.</returns>
        public static F2550TaxRollCorrectionData F2550_ListParcelDetails(string parcelId, string scheduleId, string stateId, string centralXmlIds)
        {
            F2550TaxRollCorrectionData taxRollCorrectionData = new F2550TaxRollCorrectionData();
            Hashtable ht = new Hashtable();

            ht.Add("@ParcellIDs", parcelId);
            ht.Add("@ScheduleIDs", scheduleId);
            ht.Add("@StateIDs", stateId);
            ht.Add("@CentralItemIDs", centralXmlIds);
            Utility.LoadDataSet(taxRollCorrectionData.ListParcelDetailsTable, "f2550_pclst_ParcelDetails", ht);
            return(taxRollCorrectionData);
        }