public void Remove(ChatViewModel chatViewModel)
 {
     this.ChatViewModels.Remove(chatViewModel);
 }
Example #2
0
 public void UpdateChat(ChatViewModel message)
 {
     this.chatPresenter.Update(message);
 }
 public void Add(ChatViewModel chatViewModel)
 {
     DatabaseManager.Instance.InsertChat(chatViewModel);
     this.ChatViewModels.Add(chatViewModel);
 }