Proyecto Fin de Carrera 2011
Capturador que obtiene los empleados asignados al colectivo indicado

Namespace: EntornoWeb.Controllers
Assembly: EntornoWeb (in EntornoWeb.dll) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public ActionResult ObtenerEmpleadosAsignados(
	string sidx,
	string sord,
	int page,
	int rows,
	bool _search,
	string searchField,
	string searchOper,
	string searchString,
	int colectivoActual
)
Visual Basic
Public Function ObtenerEmpleadosAsignados ( _
	sidx As String, _
	sord As String, _
	page As Integer, _
	rows As Integer, _
	_search As Boolean, _
	searchField As String, _
	searchOper As String, _
	searchString As String, _
	colectivoActual As Integer _
) As ActionResult
Visual C++
public:
ActionResult^ ObtenerEmpleadosAsignados(
	String^ sidx, 
	String^ sord, 
	int page, 
	int rows, 
	bool _search, 
	String^ searchField, 
	String^ searchOper, 
	String^ searchString, 
	int colectivoActual
)

Parameters

sidx
Type: System..::..String
Campo por el cual se ordenan los registros solicitados
sord
Type: System..::..String
Ordenación del listado (asc/des)
page
Type: System..::..Int32
Página solicitada
rows
Type: System..::..Int32
Número de registros solicitados
_search
Type: System..::..Boolean
Se reciben parámetros de filtrado
searchField
Type: System..::..String
Campo por el cual se filtra
searchOper
Type: System..::..String
Operador del filtro
searchString
Type: System..::..String
Cadena filtrada
colectivoActual
Type: System..::..Int32
Identificador del colectivo

Return Value

Colección de empleados asignados al colectivo

See Also