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