Beispiel #1
0
        private void listarParticipantes()
        {
            participantesDTO = new ParticipantesDTO();
            participantesDAO = new ParticipantesDAO(participantesDTO);

            dataTable = new DataTable();
            dataTable = participantesDAO.ListarParticipantes();

            if (dataTable.Rows.Count > 0)
            {
                cmbparticipantes.DataSource = dataTable;
                DataRow dataRow = dataTable.NewRow();
                dataRow["nombreparticipante"] = "Seleccione..";
                dataTable.Rows.InsertAt(dataRow, 0);

                cmbparticipantes.DisplayMember = "nombreparticipante";
                cmbparticipantes.ValueMember   = "numerodocumento";

                cmbparticipantes.SelectedIndex = 0;
            }
            else
            {
                MessageBox.Show("No hay participantes para mostrar.");
            }
        }
        private void listarParticipantes()
        {
            participantesDTO = new ParticipantesDTO();
            participantesDAO = new ParticipantesDAO(participantesDTO);

            dataTable = new DataTable();
            dataTable = participantesDAO.ListarParticipantes();

            if (dataTable.Rows.Count > 0)
            {
                dtparticipantes.DataSource = dataTable;
            }
            else
            {
                MessageBox.Show("No hay participantes para mostrar");
            }
        }
Beispiel #3
0
        private void ListarParticipantes()
        {
            participantesDTO = new ParticipantesDTO();
            participantesDAO = new ParticipantesDAO(participantesDTO);

            DttParticipantes = new DataTable();
            DttParticipantes = participantesDAO.ListarParticipantes();

            if (DttParticipantes.Rows.Count > 0)
            {
                dtparticipantes.DataSource = DttParticipantes;
            }
            else
            {
                MessageBox.Show("No hay participantes registrados.");
            }
        }