private void PromotoresZona_Detalle(int reporte, string NroDocumento, int id_zona, string texto) { ComisionWCFClient objComision = new ComisionWCFClient(); List <Personal_ListarTotalResult> lstdetalle; try { lstdetalle = objComision.Personal_ListarTotal(int.Parse(cboEmpresa.SelectedValue), ((Usuario_LoginResult)Session["Usuario"]).codigoUsuario, cboEmpresa.SelectedValue, null, texto, reporte, id_zona).ToList(); grdPromotores.DataSource = lstdetalle; grdPromotores.DataBind(); ViewState["lstdetalle"] = JsonHelper.JsonSerializer(lstdetalle); } catch (Exception ex) { throw ex; } }
private void Personal_Cargar() { ComisionWCFClient objPersonalWCF = new ComisionWCFClient(); try { List <Personal_ListarTotalResult> lstPersonal = objPersonalWCF.Personal_ListarTotal(int.Parse(cboEmpresa.SelectedValue), ((Usuario_LoginResult)Session["Usuario"]).codigoUsuario, cboEmpresa.SelectedValue, cboCargo.SelectedValue, "", 0, 0).ToList(); cboPersonal.DataSource = lstPersonal; cboPersonal.DataBind(); cboPersonal.Items.Insert(0, new RadComboBoxItem("SELECCIONAR", "0")); cboPersonal.SelectedIndex = 0; } catch (Exception ex) { throw ex; } }
private void Personal_Listar(int idEmpresa, int idUsario, string codigoEmpresa, string codigoCargo, string descripcion, int reporte) { ComisionWCFClient objPersonalWCF = new ComisionWCFClient(); try { List <Personal_ListarTotalResult> lstPersonal = objPersonalWCF.Personal_ListarTotal(idEmpresa, idUsario, codigoEmpresa, codigoCargo, descripcion, reporte, 0).ToList(); grdPersonal.DataSource = lstPersonal; grdPersonal.DataBind(); lblCorrida.Text = "1"; ViewState["lstPersonal"] = JsonHelper.JsonSerializer(lstPersonal); } catch (Exception ex) { throw ex; } }