public JsonResult GetAgents(AgentsQuery q) { var agents = _agentsRepository.GetPage(q.PageIndex, q.PageSize, null, null); return(Json(agents)); }