public ActionResult AddLike(Post postToFind) { using (IDal dal = new Dal()) { try { dal.AddLike(postToFind); return(ListerPostPromo()); } catch (IOException e) { Console.WriteLine($"Error : '{e}'"); } return(View("~/Views/Home/Login.cshtml")); } }