コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProblemOccurrenceDto" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="type">type.</param>
 /// <param name="identity">identity.</param>
 /// <param name="href">href.</param>
 /// <param name="muted">muted.</param>
 /// <param name="currentlyInvestigated">currentlyInvestigated.</param>
 /// <param name="currentlyMuted">currentlyMuted.</param>
 /// <param name="logAnchor">logAnchor.</param>
 /// <param name="newFailure">newFailure.</param>
 /// <param name="details">details.</param>
 /// <param name="additionalData">additionalData.</param>
 /// <param name="problem">problem.</param>
 /// <param name="mute">mute.</param>
 /// <param name="build">build.</param>
 public ProblemOccurrenceDto(string id = default(string), string type = default(string), string identity = default(string), string href = default(string), bool?muted = default(bool?), bool?currentlyInvestigated = default(bool?), bool?currentlyMuted = default(bool?), string logAnchor = default(string), bool?newFailure = default(bool?), string details = default(string), string additionalData = default(string), ProblemDto problem = default(ProblemDto), MuteDto mute = default(MuteDto), BuildDto build = default(BuildDto))
 {
     this.Id       = id;
     this.Type     = type;
     this.Identity = identity;
     this.Href     = href;
     this.Muted    = muted;
     this.CurrentlyInvestigated = currentlyInvestigated;
     this.CurrentlyMuted        = currentlyMuted;
     this.LogAnchor             = logAnchor;
     this.NewFailure            = newFailure;
     this.Details        = details;
     this.AdditionalData = additionalData;
     this.Problem        = problem;
     this.Mute           = mute;
     this.Build          = build;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RelatedEntityDto" /> class.
 /// </summary>
 /// <param name="type">type.</param>
 /// <param name="unknown">unknown.</param>
 /// <param name="internalId">internalId.</param>
 /// <param name="text">text.</param>
 /// <param name="build">build.</param>
 /// <param name="buildType">buildType.</param>
 /// <param name="project">project.</param>
 /// <param name="user">user.</param>
 /// <param name="group">group.</param>
 /// <param name="test">test.</param>
 /// <param name="problem">problem.</param>
 /// <param name="agent">agent.</param>
 /// <param name="vcsRoot">vcsRoot.</param>
 /// <param name="change">change.</param>
 /// <param name="agentPool">agentPool.</param>
 public RelatedEntityDto(string type = default(string), bool?unknown = default(bool?), string internalId = default(string), string text = default(string), BuildDto build = default(BuildDto), BuildTypeDto buildType = default(BuildTypeDto), ProjectDto project = default(ProjectDto), UserDto user = default(UserDto), GroupDto group = default(GroupDto), TestDto test = default(TestDto), ProblemDto problem = default(ProblemDto), AgentDto agent = default(AgentDto), VcsRootDto vcsRoot = default(VcsRootDto), ChangeDto change = default(ChangeDto), AgentPoolDto agentPool = default(AgentPoolDto))
 {
     this.Type       = type;
     this.Unknown    = unknown;
     this.InternalId = internalId;
     this.Text       = text;
     this.Build      = build;
     this.BuildType  = buildType;
     this.Project    = project;
     this.User       = user;
     this.Group      = group;
     this.Test       = test;
     this.Problem    = problem;
     this.Agent      = agent;
     this.VcsRoot    = vcsRoot;
     this.Change     = change;
     this.AgentPool  = agentPool;
 }