Ejemplo n.º 1
0
        public IssueInputBuilder SetIssueType(BasicIssueType issueType)
        {
            if (issueType == null)
            {
                throw new ArgumentNullException("issueType");
            }

            if (issueType.Id == null)
            {
                throw new ArgumentException("BasicIssueType cannot have a null Id field", "issueType");
            }

            return(SetIssueTypeId((long)issueType.Id));
        }
Ejemplo n.º 2
0
 public IssueInputBuilder(BasicProject project, BasicIssueType issueType, string summary)
     : this(project, issueType)
 {
     SetSummary(summary);
 }
Ejemplo n.º 3
0
 public IssueInputBuilder(BasicProject project, BasicIssueType issueType)
 {
     SetProject(project);
     SetIssueType(issueType);
 }
 public IssueInputBuilder(BasicProject project, BasicIssueType issueType, string summary)
     : this(project, issueType)
 {
     SetSummary(summary);
 }
 public IssueInputBuilder(BasicProject project, BasicIssueType issueType)
 {
     SetProject(project);
     SetIssueType(issueType);
 }
        public IssueInputBuilder SetIssueType(BasicIssueType issueType)
        {
            if (issueType == null)
            {
                throw new ArgumentNullException("issueType");
            }

            if (issueType.Id == null)
            {
                throw new ArgumentException("BasicIssueType cannot have a null Id field", "issueType");
            }

            return SetIssueTypeId((long)issueType.Id);
        }