public IQueryable <ChatViewModel> GetChats() { string userId = User.Identity.GetUserId(); string userName = User.Identity.Name; return(ChatsService.GetUserChats(userId, userName)); }