Exemplo n.º 1
0
 public void AddComment(int issueId, Comment comment)
 {
     var issue = this.Issues[issueId];
     issue.AddComment(comment);
     this.UsersAndComments[this.LoggedUser].Add(comment);
 }
Exemplo n.º 2
0
 public void AddComment(Comment comment)
 {
     this.Comments.Add(comment);
 }