/// <remarks/> public void GetPerformancesForArtistAsync(Artist artist) { this.GetPerformancesForArtistAsync(artist, null); }
/// <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); }
/// <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); }
public Performance[] GetPerformancesForArtist(Artist artist) { object[] results = this.Invoke("GetPerformancesForArtist", new object[] { artist}); return ((Performance[])(results[0])); }
public Artist UpdateArtist(Artist artist) { object[] results = this.Invoke("UpdateArtist", new object[] { artist}); return ((Artist)(results[0])); }
/// <remarks/> public void UpdateArtistAsync(Artist artist) { this.UpdateArtistAsync(artist, null); }
/// <remarks/> public void GetArtistByIdAsync(Artist artist) { this.GetArtistByIdAsync(artist, null); }
public Artist GetArtistById(Artist artist) { object[] results = this.Invoke("GetArtistById", new object[] { artist}); return ((Artist)(results[0])); }
/// <remarks/> public void DeleteArtistAsync(Artist artist) { this.DeleteArtistAsync(artist, null); }
public void DeleteArtist(Artist artist) { this.Invoke("DeleteArtist", new object[] { artist}); }
/// <remarks/> public void CreateArtistAsync(Artist artist) { this.CreateArtistAsync(artist, null); }