Exemple #1
0
		public byte[] GetPropertyAppraisalReceiptReport(int orderId, string borrowerFirstName, string borrowerLastName, string creditCardType, string transactionId, string street, string zip, string state, string city, ReportFormat format)
		{
			var parameters = new ES.ParameterValue[]
			{
				new ES.ParameterValue { Label = "orderId", Name = "orderId", Value = orderId.ToString()},
			  new ES.ParameterValue { Label = "borrowerFirstName", Name = "borrowerFirstName", Value = borrowerFirstName},
				new ES.ParameterValue { Label = "borrowerLastName", Name = "borrowerLastName", Value = borrowerLastName},
				new ES.ParameterValue { Label = "creditCardType", Name = "creditCardType", Value = creditCardType},
				new ES.ParameterValue { Label = "transactionId", Name = "transactionId", Value = transactionId},
				new ES.ParameterValue { Label = "street", Name = "street", Value = street},
				new ES.ParameterValue { Label = "zip", Name = "zip", Value = zip},
				new ES.ParameterValue { Label = "state", Name = "state", Value = state},
				new ES.ParameterValue { Label = "city", Name = "city", Value = city}
			};

			return GetReportInternal(ReportType.PropertyAppraisalReceipt, format, parameters);
		}
Exemple #2
0
 /// <remarks/>
 public void SetExecutionParameters2Async(ParameterValue[] Parameters, string ParameterLanguage) {
     this.SetExecutionParameters2Async(Parameters, ParameterLanguage, null);
 }
Exemple #3
0
 /// <remarks/>
 public void SetExecutionParameters2Async(ParameterValue[] Parameters, string ParameterLanguage, object userState) {
     if ((this.SetExecutionParameters2OperationCompleted == null)) {
         this.SetExecutionParameters2OperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetExecutionParameters2OperationCompleted);
     }
     this.InvokeAsync("SetExecutionParameters2", new object[] {
                 Parameters,
                 ParameterLanguage}, this.SetExecutionParameters2OperationCompleted, userState);
 }
Exemple #4
0
 public ExecutionInfo2 SetExecutionParameters2(ParameterValue[] Parameters, string ParameterLanguage) {
     object[] results = this.Invoke("SetExecutionParameters2", new object[] {
                 Parameters,
                 ParameterLanguage});
     return ((ExecutionInfo2)(results[0]));
 }