コード例 #1
0
 public IssueModel(string title, string description, DateTime creationDate,
                   SeverityModel severity, PersonModel author)
 {
     this.Title        = title;
     this.Description  = description;
     this.CreationDate = creationDate;
     this.Severity     = severity;
     this.Author       = author;
 }
コード例 #2
0
 public IssueModel(int id, string title, string description, DateTime creationDate,
                   StatusModel status, SeverityModel severity, PersonModel author, List <PersonModel> assignees)
 {
     this.Id           = id;
     this.Title        = title;
     this.Description  = description;
     this.CreationDate = creationDate;
     this.Status       = status;
     this.Severity     = severity;
     this.Author       = author;
     this.Assignees    = assignees;
 }