protected void Cargar(CheckBoxList checkBoxList, String idPeriodoPago)
 {
     condicionNomina _condicionNomina = new condicionNomina(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
     checkBoxList.DataSource = _condicionNomina.obtenerPeriodosDescuentoSubTranportePorPeriodoPago(idPeriodoPago);
     checkBoxList.DataTextField = "descripcion";
     checkBoxList.DataValueField = "codigo";
     checkBoxList.DataBind();
 }