示例#1
0
        /// <summary>
        /// Rejects a filing on the GSCCCA eFiling system wiht the status provided in a PRIA Response xml document
        /// </summary>
        /// <param name="gscccaID">The GSCCCAID of the document which is to be marked rejected</param>
        /// <param name="rejectionReasons">A list of reasons why the filing could not be recorded</param>
        /// <returns>A PRIA Response xml document containing the status of the rejection request</returns>
        public string PRIARejectPackage(string gscccaID, List <string> rejectionReasons)
        {
            OnlineServiceProxy proxy = getConfiguredProxy();

            return(proxy.RejectPackage(this.userid, this.password, gscccaID, rejectionReasons.ToArray()));
        }