예제 #1
0
 public CPost(CUser owner, Bitmap picture, List <CUser> likes, List <CComment> comments, DateTime date)
 {
     Owner    = owner;
     Picture  = picture;
     Likes    = likes;
     Comments = comments;
     Date     = date;
 }
예제 #2
0
 public CComment(CUser user, String text, DateTime date)
 {
     Owner = user;
     Text  = text;
     Date  = date;
 }