Пример #1
0
 /// <summary>
 /// Gets an individual component in an issue tracker.
 /// To get a component, private issue trackers require the caller to authenticate with an account that has appropriate authorisation.
 /// </summary>
 /// <param name="componentId">The component identifier.</param>
 /// <returns></returns>
 public async Task <Component> GetComponent(int?componentId)
 {
     return(await _repositoriesEndPoint.GetComponent(componentId));
 }