public ViewCommentPO(List <CommentPO> comment) { CommentList = comment; Comment = new CommentPO(); }
//View Model that allows the use of a list of objects and a singular object. public ViewCommentPO() { CommentList = new List <CommentPO>(); Comment = new CommentPO(); }