/// <summary> /// Get bcgov_AdditionalContact from accounts /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='accountid'> /// key: accountid of account /// </param> /// <param name='select'> /// Select properties to be returned /// </param> /// <param name='expand'> /// Expand related entities /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <MicrosoftDynamicsCRMcontact> GetAsync(this IAdditionalcontact operations, string accountid, IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(accountid, select, expand, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Get bcgov_AdditionalContact from accounts /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='accountid'> /// key: accountid of account /// </param> /// <param name='select'> /// Select properties to be returned /// </param> /// <param name='expand'> /// Expand related entities /// </param> public static MicrosoftDynamicsCRMcontact Get(this IAdditionalcontact operations, string accountid, IList <string> select = default(IList <string>), IList <string> expand = default(IList <string>)) { return(operations.GetAsync(accountid, select, expand).GetAwaiter().GetResult()); }