示例#1
0
        /// <summary>
        /// Retrieve a pending filing from the GSCCCA eFiling system provided in a PRIA Response xml Document
        /// </summary>
        /// <param name="gscccaID">The GSCCCAID of the pending filing being requested</param>
        /// <returns>A PRIA Response xml document containing the pending filing being requested, if found</returns>
        public string PRIAGetPendingPackage(string gscccaID)
        {
            OnlineServiceProxy proxy = getConfiguredProxy();

            return(proxy.GetPendingPackage(this.userid, this.password, gscccaID));
        }