/// <summary> /// Initializes a new instance of the <see cref="ReportServiceManager"/> class. /// </summary> public ReportServiceManager(string siteURL) { objWebService = new ReportServiceProxy(siteURL); objNodeParem = new XmlNode[1]; xmlSearhRequestDoc = new XmlDocument(); objSearchRequestHandler = new SearchRequestHandler(); }
/// <summary> /// Creates the search request. /// </summary> /// <param name="requestInformation">The request information.</param> /// <returns></returns> public override XmlDocument CreateSearchRequest(object requestInformation) { SearchRequestHandler objSearchRequestHandler = null; XmlDocument objXmlSearhRequestDoc = null; objXmlSearhRequestDoc = new XmlDocument(); objSearchRequestHandler = new SearchRequestHandler(); RequestInfo objRequestInfo = (RequestInfo)requestInformation; //Creates the request XML. objXmlSearhRequestDoc = objSearchRequestHandler.CreateRequestXML(objRequestInfo); return objXmlSearhRequestDoc; }
/// <summary> /// Initializes a new instance of the <see cref="ReportServiceManager"/> class. /// </summary> public QueryBuilderManager() { try { objWebService = new QueryBuilder.QueryManagerService(); objNodeParem = new XmlNode[1]; xmlSearhRequestDoc = new XmlDocument(); objSearchRequestHandler = new SearchRequestHandler(); } catch(Exception) { throw; } }
/// <summary> /// Initializes a new instance of the <see cref="ReportServiceManager"/> class. /// </summary> public EventServiceManager() { try { objEventService = new EventServicesProxy(); objNodeParem = new XmlNode[1]; xmlSearhRequestDoc = new XmlDocument(); objSearchRequestHandler = new SearchRequestHandler(); ; } catch(Exception) { throw; } }
/// <summary> /// Initializes a new instance of the <see cref="ResourceServiceManager"/> class. /// </summary> public ResourceServiceManager() { objWebService = new ResourceServiceProxy(); objNodeParem = new XmlNode[1]; objSearchRequestHandler = new SearchRequestHandler(); }