Ejemplo n.º 1
0
 public Message(Conversation parent, string text, DateTime creationDate)
 {
     this.parent       = parent;
     this.text         = text;
     this.creationDate = creationDate;
 }
Ejemplo n.º 2
0
 public Conversation(Conversation parent) : base(parent)
 {
 }
Ejemplo n.º 3
0
 public Message(Conversation parent)
 {
     this.parent = parent;
 }