/// <summary> /// Initializes a new instance of the <see cref="TestDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="name">name.</param> /// <param name="mutes">mutes.</param> /// <param name="investigations">investigations.</param> /// <param name="testOccurrences">testOccurrences.</param> /// <param name="parsedTestName">parsedTestName.</param> /// <param name="href">href.</param> /// <param name="locator">locator.</param> public TestDto(string id = default(string), string name = default(string), MutesDto mutes = default(MutesDto), InvestigationsDto investigations = default(InvestigationsDto), TestOccurrencesDto testOccurrences = default(TestOccurrencesDto), ParsedTestNameDto parsedTestName = default(ParsedTestNameDto), string href = default(string), string locator = default(string)) { this.Id = id; this.Name = name; this.Mutes = mutes; this.Investigations = investigations; this.TestOccurrences = testOccurrences; this.ParsedTestName = parsedTestName; this.Href = href; this.Locator = locator; }
/// <summary> /// Initializes a new instance of the <see cref="ProblemDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="type">type.</param> /// <param name="identity">identity.</param> /// <param name="href">href.</param> /// <param name="description">description.</param> /// <param name="mutes">mutes.</param> /// <param name="investigations">investigations.</param> /// <param name="problemOccurrences">problemOccurrences.</param> /// <param name="locator">locator.</param> public ProblemDto(string id = default(string), string type = default(string), string identity = default(string), string href = default(string), string description = default(string), MutesDto mutes = default(MutesDto), InvestigationsDto investigations = default(InvestigationsDto), ProblemOccurrencesDto problemOccurrences = default(ProblemOccurrencesDto), string locator = default(string)) { this.Id = id; this.Type = type; this.Identity = identity; this.Href = href; this.Description = description; this.Mutes = mutes; this.Investigations = investigations; this.ProblemOccurrences = problemOccurrences; this.Locator = locator; }