Example #1
0
 private void SendMessagesHistory()
 {
     ChatUtils.SendMessagesHistory(_data.ClientsInGlobalChat.MessagesHistory, _client, _requests);
 }
 private void SendMessagesHistory(GroupChat groupChat)
 {
     ChatUtils.SendMessagesHistory(_data.AllGroupsChat.GetAllGroupHistory(groupChat), _client, _requests);
 }
 private void SendMessagesHistory(Guid clientGuid, Guid guidToSend)
 {
     ChatUtils.SendMessagesHistory(_data.ClientsConnectedInChat.GetMessagesToHistory(clientGuid, guidToSend), _client, _requests);
 }