public string GetAllUserCommunicationEvents(int userId)
        {
            string result = EventLogger
                            .GetAllUserCommunicationEvents(
                new LogRequest()
            {
                UserId = userId
            })
                            .ToJson();

            return(result);
        }