Example #1
0
 private void LLenaCombo()
 {
     Id_DropDownList.Items.Clear();
     Id_DropDownList.Items.Add(condicion);
     Id_DropDownList.DataSource     = repositorio.GetList(x => true);
     Id_DropDownList.DataValueField = "DepositoId";
     Id_DropDownList.DataTextField  = "Monto";
     Id_DropDownList.DataBind();
 }
Example #2
0
 private void LlenaComboId()
 {
     Id_DropDownList.Items.Clear();
     Id_DropDownList.Items.Add(condicion);
     Id_DropDownList.DataSource     = repositorio.GetList(x => true);
     Id_DropDownList.DataValueField = "IdPrestamo";
     Id_DropDownList.DataTextField  = "IdPrestamo";
     Id_DropDownList.DataBind();
 }
Example #3
0
 private void LlenaComboBoxId()
 {
     Id_DropDownList.Items.Clear();
     Id_DropDownList.Items.Add(condicion);
     Id_DropDownList.DataSource     = repositorio.GetList(x => true);
     Id_DropDownList.DataValueField = "IdCategoria";
     Id_DropDownList.DataTextField  = "Descripcion";
     Id_DropDownList.DataBind();
 }
 private void LlenaComboBoxId()
 {
     Id_DropDownList.Items.Clear();
     Id_DropDownList.Items.Add(condicion);
     Id_DropDownList.DataSource     = repositorio.GetList(x => true);
     Id_DropDownList.DataValueField = "CuentaId";
     Id_DropDownList.DataTextField  = "Nombre";
     Id_DropDownList.DataBind();
 }