/// <summary>
 /// Initializes a new instance of the issue REST client.
 /// </summary>
 /// <param name="client">The JSON client that has been set up for a specific JIRA instance.</param>
 /// <param name="metadataClient">The metadata REST client for the same JIRA instance.</param>
 /// <param name="sessionClient">The session REST client for the same JIRA instance.</param>
 public JiraIssueRestClient(JsonServiceClient client, IMetadataRestClient metadataClient, ISessionRestClient sessionClient)
 {
     this.client = client;
     this.metadataClient = metadataClient;
     this.sessionClient = sessionClient;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the issue REST client.
 /// </summary>
 /// <param name="client">The JSON client that has been set up for a specific JIRA instance.</param>
 /// <param name="metadataClient">The metadata REST client for the same JIRA instance.</param>
 /// <param name="sessionClient">The session REST client for the same JIRA instance.</param>
 public JiraIssueRestClient(JsonServiceClient client, IMetadataRestClient metadataClient, ISessionRestClient sessionClient)
 {
     this.client         = client;
     this.metadataClient = metadataClient;
     this.sessionClient  = sessionClient;
 }