Ejemplo n.º 1
0
        /// <summary>
        /// Return a representation of a JIRA project identified by the string key. ie. NET
        /// </summary>
        public RemoteProject getProjectByKey(string projectKey)
        {
            JiraSoapServiceService service = getServiceEndPoint();
            string token = service.login(_username, _password);

            return(service.getProjectByKey(token, projectKey));
        }