public IActionResult PostComment(ProfileViewModel profileView)
 {
     _queries.AddComment(profileView.Comment);
     return(RedirectToAction("Profile", "Account", new { userId = profileView.Comment.ProfileOf }));
 }