예제 #1
0
 private void comboBoxRecipients_SelectedIndexChanged(object sender, EventArgs e)
 {
     _currentRecipient = (IChatRecipient)comboBoxRecipients.SelectedItem;
     UpdateCleanButtonState();
 }
예제 #2
0
 public int GetMessagesCount(IChatRecipient currentRecipient, long startTime, long endTime)
 {
     return _dataService.GetMessagesCount(currentRecipient.ChatToken, startTime, endTime);
 }