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