Example #1
0
 private void _commentExecute(object parameter)
 {
     if (_eventService.AddComment(SystemUser.Instance.Id, _event.Id, CommentText))
     {
         CommentText = "";
         Comments    = _eventService.GetComments(_event.Id).ToList();
     }
 }