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