(id: number)
| 73 | /* BEGIN COMMENTS */ |
| 74 | |
| 75 | getComment(id: number): CommentModel | undefined { |
| 76 | return this.commentCache.get(id.toString()); |
| 77 | } |
| 78 | |
| 79 | setComment(id: number, comment: CommentModel): CommentModel { |
| 80 | this.commentCache.set(comment.id.toString(), comment); |