public GetDealSheetResponse(ObjectFormatInd objectFormatInd, byte[] objectStream)
 {
     this.objectFormatInd = objectFormatInd;
     this.objectStream = objectStream;
 }
 public GetConfirmationResponse(ObjectFormatInd objectFormatInd, bool confirmCompleteFlag, byte[] objectStream)
 {
     this.objectFormatInd = objectFormatInd;
     this.confirmCompleteFlag = confirmCompleteFlag;
     this.objectStream = objectStream;
 }
 public GetDealSheetResponse(ObjectFormatInd objectFormatInd, String Url)
 {
     this.objectFormatInd = objectFormatInd;
     this.url = url;
 }
 public GetConfirmationResponse(ObjectFormatInd objectFormatInd, bool confirmCompleteFlag, String Url)
 {
     this.objectFormatInd = objectFormatInd;
     this.confirmCompleteFlag = confirmCompleteFlag;
     this.url = url;
 }
Example #5
0
 public GetDealSheetResponse(ObjectFormatInd objectFormatInd, byte[] objectStream)
 {
     this.objectFormatInd = objectFormatInd;
     this.objectStream    = objectStream;
 }
Example #6
0
 public GetDealSheetResponse(ObjectFormatInd objectFormatInd, String Url)
 {
     this.objectFormatInd = objectFormatInd;
     this.url             = url;
 }
Example #7
0
 public GetConfirmationResponse(ObjectFormatInd objectFormatInd, bool confirmCompleteFlag, byte[] objectStream)
 {
     this.objectFormatInd     = objectFormatInd;
     this.confirmCompleteFlag = confirmCompleteFlag;
     this.objectStream        = objectStream;
 }
Example #8
0
 public GetConfirmationResponse(ObjectFormatInd objectFormatInd, bool confirmCompleteFlag, String Url)
 {
     this.objectFormatInd     = objectFormatInd;
     this.confirmCompleteFlag = confirmCompleteFlag;
     this.url = url;
 }