public Chat[] GetUserChatsInfo(Guid userId) { var chats = _chatsRepository.GetUserChatsInfo(userId); _logger.Info($"{DateTime.Now.ToShortDateString()} Chat info with id: {userId} has been queried"); return(chats); }