/// <summary> /// Constructor /// </summary> /// <param name="client">The client handle</param> /// <param name="comments">The comments this comment belongs to</param> /// <param name="id"></param> public CommentController(Client client, CommentsController comments, int id) : base(client) { Comments = comments; Id = id; }