Exemple #1
0
        /// <summary>
        /// F1108_s the get submit affidavit.
        /// </summary>
        /// <param name="statementId">The statement id.</param>
        /// <returns>Returns SubmitAffidavit DatatSet</returns>
        public static REETA F1108_GetSubmitAffidavit(string statementId)
        {
            REETA     submitDataset = new REETA();
            Hashtable ht            = new Hashtable();

            ht.Add("@StatementIDs", statementId);
            string[] dataTable = new string[] { submitDataset.AFFIDAVIT.TableName, submitDataset.INDIVIDUAL.TableName, submitDataset.PARCEL.TableName, submitDataset.USE_CODES.TableName, submitDataset.SUPPLEMENTAL.TableName };
            Utility.LoadDataSet(submitDataset, "f1108_pclst_ExciseTaxAffidavitStatmentDetails", ht, dataTable);
            return(submitDataset);
        }
Exemple #2
0
        /// <summary>
        /// F1108_s the get submit affidavit reply.
        /// </summary>
        /// <param name="reetReplyXml">The reet reply XML.</param>
        /// <param name="userId">The user ID.</param>
        /// <returns>REETA  Data Explain Status Of Update</returns>
        public static REETA F1108_GetSubmitAffidavitReply(string reetReplyXml, int userId)
        {
            REETA     reetReply = new REETA();
            Hashtable ht        = new Hashtable();

            ht.Add("@UserID", userId);
            ht.Add("@ReetReplay", reetReplyXml);
            string[] dataTable = new string[] { reetReply.ErrorStatusDataTable.TableName, reetReply.AFFIDAVIT.TableName, reetReply.INDIVIDUAL.TableName, reetReply.PARCEL.TableName, reetReply.USE_CODES.TableName, reetReply.SUPPLEMENTAL.TableName };
            Utility.LoadDataSet(reetReply, "f1108_pcins_ExciseTaxAffidavitSubmitted", ht, dataTable);
            return(reetReply);
        }