Package de.nak.notendb.model

Examples of de.nak.notendb.model.Manipel


  /**
   * Die Mündlichen Prüfungen zur getätigten Auswahl werden in der Session
   * bereitgestellt.
   */
  public String execute() throws Exception {
    Manipel manipel = manipelService.ladeManipel(selektierteManipelId);
    Pruefung pruefung = pruefungService.ladePruefung(selektiertePruefungId);
    List<Pruefungsleistung> pruefungsleistungen = pruefungsleistungService
        .ladeMuendlicheZuPruefung(selektiertePruefungId);
    Collections.sort(pruefungsleistungen);

View Full Code Here


  @Override
  public String execute() throws Exception {
    List<ErfassungsZeile> erfassungsTabelle = new ArrayList<ErfassungsZeile>();
    List<Dozent> dozenten = dozentService.ladeAlle();
    Pruefungsfach pruefungsfach = pruefungsfachService.ladeFach(selektiertePruefungsfachId);
    Manipel manipel = manipelService.ladeManipel(selektierteManipelId);
    List<Student> studenten = studentService.ladeStudentenZuManipel(selektierteManipelId);
    Collections.sort(studenten);
    for (Student s : studenten) {
      Pruefungsleistung pruefungsleistung = pruefungsleistungService.ladeAktuellGueltigeLeistungZuStudentUndFach(
          s.getId(), pruefungsfach.getId());
View Full Code Here

    this.manipelDAO = manipelDAO;
  }

  @Override
  public Manipel ladeManipel(long manipelId) throws ManipelNichtGefundenException {
    Manipel manipel = manipelDAO.lade(manipelId);
    if (manipel == null) {
      throw new ManipelNichtGefundenException();
    }
    return manipel;
  }
View Full Code Here

  private void erstelleTestdaten() throws ManipelExistentException, StudentExistentException,
      DozentExistentException, PruefungsfachExistentException, PruefungExistentException,
      PruefungsleistungExistentException {
    // ********************************************************************************
    // Manipel anlegen
    Manipel testManipel1 = new Manipel();
    testManipel1.setJahrgang(2007);
    testManipel1.setStudienrichtung("BSc. Wirtschaftsinformatik");

    Manipel testManipel2 = new Manipel();
    testManipel2.setJahrgang(2008);
    testManipel2.setStudienrichtung("BSc. Betriebswirtschaftslehre");

    Manipel testManipel3 = new Manipel();
    testManipel3.setJahrgang(2009);
    testManipel3.setStudienrichtung("BSc. Wirtschaftsingenieurwesen");

    Manipel testManipel4 = new Manipel();
    testManipel4.setJahrgang(2010);
    testManipel4.setStudienrichtung("BSc. Betriebswirtschaftslehre");

    Manipel testManipel5 = new Manipel();
    testManipel5.setJahrgang(2010);
    testManipel5.setStudienrichtung("BSc. Wirtschaftsinformatik");

    Manipel testManipel6 = new Manipel();
    testManipel6.setJahrgang(2010);
    testManipel6.setStudienrichtung("BSc. Wirtschaftsingenieurwesen");

    manipelService.speichere(testManipel1);
    manipelService.speichere(testManipel2);
    manipelService.speichere(testManipel3);
    manipelService.speichere(testManipel4);
View Full Code Here

TOP

Related Classes of de.nak.notendb.model.Manipel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.