예제 #1
0
 public Post(string id, User user, string inhoud, DateTime tijdstip, SocialNetwork type)
 {
     this.id = id;
     this.user = user;
     this.inhoud = inhoud;
     this.tijdstip = tijdstip;
     this.type = type;
 }
예제 #2
0
 public FotoPost(string id, User user, string inhoud, DateTime tijdstip, Post.SocialNetwork type, string fotoURL)
     : base(id, user, inhoud, tijdstip, type)
 {
     this.fotoUrl = fotoURL;
 }