Esempio n. 1
0
 public DownloadDocumentResponse(string protocolVersion, string id, string userId, AppClient.AppDownloadDocument.XRoadServiceIdentifierType service, AppClient.AppDownloadDocument.XRoadClientIdentifierType client, AppClient.AppDownloadDocument.File DownloadDocumentResult)
 {
     this.protocolVersion = protocolVersion;
     this.id      = id;
     this.userId  = userId;
     this.service = service;
     this.client  = client;
     this.DownloadDocumentResult = DownloadDocumentResult;
 }
Esempio n. 2
0
 public DownloadDocumentRequest(string protocolVersion, string id, string userId, AppClient.AppDownloadDocument.XRoadServiceIdentifierType service, AppClient.AppDownloadDocument.XRoadClientIdentifierType client, string Inn)
 {
     this.protocolVersion = protocolVersion;
     this.id      = id;
     this.userId  = userId;
     this.service = service;
     this.client  = client;
     this.Inn     = Inn;
 }
Esempio n. 3
0
 public System.Threading.Tasks.Task <AppClient.AppDownloadDocument.DownloadDocumentResponse> DownloadDocumentAsync(string protocolVersion, string id, string userId, AppClient.AppDownloadDocument.XRoadServiceIdentifierType service, AppClient.AppDownloadDocument.XRoadClientIdentifierType client, string Inn)
 {
     AppClient.AppDownloadDocument.DownloadDocumentRequest inValue = new AppClient.AppDownloadDocument.DownloadDocumentRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     inValue.Inn     = Inn;
     return(((AppClient.AppDownloadDocument.IAppService)(this)).DownloadDocumentAsync(inValue));
 }
Esempio n. 4
0
 public AppClient.AppDownloadDocument.File DownloadDocument(ref string protocolVersion, ref string id, ref string userId, ref AppClient.AppDownloadDocument.XRoadServiceIdentifierType service, ref AppClient.AppDownloadDocument.XRoadClientIdentifierType client, string Inn)
 {
     AppClient.AppDownloadDocument.DownloadDocumentRequest inValue = new AppClient.AppDownloadDocument.DownloadDocumentRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     inValue.Inn     = Inn;
     AppClient.AppDownloadDocument.DownloadDocumentResponse retVal = ((AppClient.AppDownloadDocument.IAppService)(this)).DownloadDocument(inValue);
     protocolVersion = retVal.protocolVersion;
     id      = retVal.id;
     userId  = retVal.userId;
     service = retVal.service;
     client  = retVal.client;
     return(retVal.DownloadDocumentResult);
 }