Ejemplo n.º 1
0
 public personListResponse(Producer.pplService.XRoadClientIdentifierType client, Producer.pplService.XRoadServiceIdentifierType service, string userId, string id, string protocolVersion, Producer.pplService.person person)
 {
     this.client          = client;
     this.service         = service;
     this.userId          = userId;
     this.id              = id;
     this.protocolVersion = protocolVersion;
     this.person          = person;
 }
Ejemplo n.º 2
0
 public personListRequest(Producer.pplService.XRoadClientIdentifierType client, Producer.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;
 }