Esempio n. 1
0
 public IEnumerable <MessagesByKey> AggregateUserId(string userId)
 {
     return(string.IsNullOrEmpty(userId?.Trim())
         ? _userMessageService.AggregateUserId()
         : _userMessageService.AggregateUserId(userId));
 }