Beispiel #1
0
 public personListResponse(ConsoleApplication1.pplService.XRoadClientIdentifierType client, ConsoleApplication1.pplService.XRoadServiceIdentifierType service, string userId, string id, string protocolVersion, ConsoleApplication1.pplService.person person)
 {
     this.client          = client;
     this.service         = service;
     this.userId          = userId;
     this.id              = id;
     this.protocolVersion = protocolVersion;
     this.person          = person;
 }
Beispiel #2
0
 public personListRequest(ConsoleApplication1.pplService.XRoadClientIdentifierType client, ConsoleApplication1.pplService.XRoadServiceIdentifierType service, string userId, string id, string protocolVersion, string firstName, string lastName)
 {
     this.client          = client;
     this.service         = service;
     this.userId          = userId;
     this.id              = id;
     this.protocolVersion = protocolVersion;
     this.firstName       = firstName;
     this.lastName        = lastName;
 }