public ActionResult BlockUser(string listUser)
 {
     string html_result = "Khóa Thành Công";
     string[] users = listUser.Split(',');
     UserModel um = new UserModel();
     um.BanAccount(users.ToList());
     return Content(html_result, "text/plain");
 }