public JsonResult PersonSearch(string name)
 {
     var u = new User();
     return Json(new
     {
         User = u.SearchFor(name)
     });
 }