示例#1
0
        protected void llenarListados()
        {
            PacientesController objPacienteController = new PacientesController();

            this.obraSocialPaciente.Items.Add(new ListItem("Seleccione", "0"));

            IList <ObrasSocialesUIClass> objObrasSociales = objPacienteController.getObrasSociales();

            foreach (ObrasSocialesUIClass obj in objObrasSociales)
            {
                this.obraSocialPaciente.Items.Add(new ListItem(obj.Nombre, obj.Id.ToString()));
            }
        }