Exemplo n.º 1
0
 public void SendMessage(Message text, Chat chat)
 {
     chat.Add(text);
 }
Exemplo n.º 2
0
 public void Sync(Chat chat1, Message msg)
 {
     chat1.Add(msg);
     chat1.msgList.Sort();
 }
Exemplo n.º 3
0
 public void NewChat(Chat chat)
 {
     Chats.Add(chat);
 }