public ResolveSaturn5IssueEventArgs(Saturn5Issue issue, User resolvedBy, Saturn5IssueStatus resolvedHow, string resolvedHowDescription) { this.Issue = issue; this.ResolvedBy = resolvedBy; this.ResolvedHow = resolvedHow; this.ResolvedHowDescription = resolvedHowDescription; }
public Saturn5Issue(string serialNumber, string timestamp, string reportedByUsername, string description, Saturn5IssueStatus status, string resolvedHowDescription, string resolvedByUsername) { this.SerialNumber = serialNumber; this.Timestamp = timestamp; this.ReportedByUsername = reportedByUsername; this.Description = description; this.Status = status; this.ResolvedHowDescription = resolvedHowDescription; this.ResolvedByUsername = resolvedByUsername; }