Ejemplo n.º 1
0
 /// <remarks/>
 public void GetPerformancesForArtistAsync(Artist artist) {
     this.GetPerformancesForArtistAsync(artist, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void GetPerformancesForArtistAsync(Artist artist, object userState) {
     if ((this.GetPerformancesForArtistOperationCompleted == null)) {
         this.GetPerformancesForArtistOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPerformancesForArtistOperationCompleted);
     }
     this.InvokeAsync("GetPerformancesForArtist", new object[] {
                 artist}, this.GetPerformancesForArtistOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 /// <remarks/>
 public void UpdateArtistAsync(Artist artist, object userState) {
     if ((this.UpdateArtistOperationCompleted == null)) {
         this.UpdateArtistOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateArtistOperationCompleted);
     }
     this.InvokeAsync("UpdateArtist", new object[] {
                 artist}, this.UpdateArtistOperationCompleted, userState);
 }
Ejemplo n.º 4
0
 public Performance[] GetPerformancesForArtist(Artist artist) {
     object[] results = this.Invoke("GetPerformancesForArtist", new object[] {
                 artist});
     return ((Performance[])(results[0]));
 }
Ejemplo n.º 5
0
 public Artist UpdateArtist(Artist artist) {
     object[] results = this.Invoke("UpdateArtist", new object[] {
                 artist});
     return ((Artist)(results[0]));
 }
Ejemplo n.º 6
0
 /// <remarks/>
 public void UpdateArtistAsync(Artist artist) {
     this.UpdateArtistAsync(artist, null);
 }
Ejemplo n.º 7
0
 /// <remarks/>
 public void GetArtistByIdAsync(Artist artist) {
     this.GetArtistByIdAsync(artist, null);
 }
Ejemplo n.º 8
0
 public Artist GetArtistById(Artist artist) {
     object[] results = this.Invoke("GetArtistById", new object[] {
                 artist});
     return ((Artist)(results[0]));
 }
Ejemplo n.º 9
0
 /// <remarks/>
 public void DeleteArtistAsync(Artist artist) {
     this.DeleteArtistAsync(artist, null);
 }
Ejemplo n.º 10
0
 public void DeleteArtist(Artist artist) {
     this.Invoke("DeleteArtist", new object[] {
                 artist});
 }
Ejemplo n.º 11
0
 /// <remarks/>
 public void CreateArtistAsync(Artist artist) {
     this.CreateArtistAsync(artist, null);
 }