示例#1
0
        /// <summary>
        /// Accepts a filing on the GSCCCA eFiling system using strictly PRIA xml documents
        /// </summary>
        /// <param name="priaXML">The PRIA 2.4.1 Request xml document containing the filing to be marked accepted </param>
        /// <returns>A PRIA Response xml document containing the status of the Request submitted</returns>
        public string PRIAAcceptPackage(string priaXML)
        {
            OnlineServiceProxy proxy = getConfiguredProxy();

            return(proxy.AcceptPackage(this.userid, this.password, priaXML));
        }