/// <summary> /// Get all Profile information /// </summary> /// <returns></returns> public JsonResult GetAllProfiles() { var profiles = _contactManager.FindProfiles(0, 20).AsQueryable(); return(this.Json(profiles, JsonRequestBehavior.AllowGet)); }