예제 #1
0
 public void CreateAuditorRelationship( Identifier auditorUserId, Identifier auditeeUserId )
 {
     CreateAuditorRelationshipRequest request = new CreateAuditorRelationshipRequest() {
         AuditorUserId = auditorUserId,
         AuditeeUserId = auditeeUserId
     };
     CallWebService<IUserManagementServicev1_4,
         CreateAuditorRelationshipRequest, CreateAuditorRelationshipResponse>(
         m_service1_4, request, ( s, q ) => s.CreateAuditorRelationship( q ) );
 }
예제 #2
0
 /// <remarks/>
 public void CreateAuditorRelationshipAsync(CreateAuditorRelationshipRequest CreateAuditorRelationshipRequest)
 {
     this.CreateAuditorRelationshipAsync(CreateAuditorRelationshipRequest, null);
 }
예제 #3
0
 /// <remarks/>
 public void CreateAuditorRelationshipAsync(CreateAuditorRelationshipRequest CreateAuditorRelationshipRequest, object userState)
 {
     if ((this.CreateAuditorRelationshipOperationCompleted == null)) {
         this.CreateAuditorRelationshipOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateAuditorRelationshipOperationCompleted);
     }
     this.InvokeAsync("CreateAuditorRelationship", new object[] {
                 CreateAuditorRelationshipRequest}, this.CreateAuditorRelationshipOperationCompleted, userState);
 }
예제 #4
0
 /// <remarks/>
 public System.IAsyncResult BeginCreateAuditorRelationship(CreateAuditorRelationshipRequest CreateAuditorRelationshipRequest, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("CreateAuditorRelationship", new object[] {
                 CreateAuditorRelationshipRequest}, callback, asyncState);
 }