Ejemplo n.º 1
0
 private void EditParticipantsEnrollment_Click(object sender, EventArgs e)
 {
     if (GetSelectedID(participantsEnrollmentList) != -1)
     {
         ParticipantEnrollment        P      = DBLayer.ParticipantsEnrollments.Read(GetSelectedID(participantsEnrollmentList), E.Number);
         DialogParticipantsEnrollment dialog = new DialogParticipantsEnrollment(E, P);
         dialog.Show();
     }
 }
Ejemplo n.º 2
0
        private void AddParticipantsEnrollment_Click(object sender, EventArgs e)
        {
            DialogParticipantsEnrollment dialog = new DialogParticipantsEnrollment(E);

            dialog.Show();
        }