Exemple #1
0
 private void CargarEntidades()
 {
     PrestadorImplement oPrestadorImplement = new PrestadorImplement();
     IList ListaPrestador = oPrestadorImplement.GetAll();
     chkListEntidad.DataSource = ListaPrestador;
     chkListEntidad.DisplayMember = "prestador";
     chkListEntidad.ValueMember = "id_prestador";
 }
Exemple #2
0
 private void CargarPrestadorPE()
 {
     PrestadorImplement oPrestadorImplement=new PrestadorImplement();
     oPrestadorImplement.CargarCombo(this.cmbPEEntidad, "Seleccione Prestador");
 }