Package net.fqsc.inscriptions.model.evenements

Examples of net.fqsc.inscriptions.model.evenements.Saisons


  public AffiliationsClubs getAffiliationsClubs() throws ActionException,
      SelectionException
  {
    if (this.affiliationsClubs == null)
    {
      final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
          "Saisons");
      this.setAffiliationsClubs(saisons.getAffiliationsClubsClub(this));
    }
    return this.affiliationsClubs;
  }
View Full Code Here


  public ActiveSaisonsListPanel(final String id, final Map parameters)
  {
    super(id, parameters);
    final InscriptionsApp app = (InscriptionsApp) this.getApplication();
    final Saisons saisons = (Saisons) app.getEntry("Saisons");

    this.add(new ActiveSaisonsListView("ListeSaisons", saisons));
  }
View Full Code Here

  }

  public Double getPrix()
  {
    final Saisons saisons = (Saisons) domainModel.getEntry("Saisons");
    final Tarification tarification = saisons
        .retrieveTarificationByOid(this.tarificationOid);

    return tarification.getPrix();
  }
View Full Code Here

    this.tarificationOid = tarificationOid;
  }

  public Tarification getTarification()
  {
    final Saisons saisons = (Saisons) domainModel.getEntry("Saisons");
    final Tarification tarification = saisons
        .retrieveTarificationByOid(this.tarificationOid);

    return tarification;
  }
View Full Code Here

  public Inscriptions getInscriptions() throws ActionException,
      SelectionException
  {
    if (this.inscriptions == null)
    {
      final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
          "Saisons");
      this.setInscriptions(saisons.getInscriptionsPersonne(this));
    }
   
    return this.inscriptions;
  }
View Full Code Here

  {
    try
    {
      if (this.infosSaison == null)
      {
        final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
            "Saisons");
        this.setInfosSaison(saisons.getInfosSaisonOfPersonne(this));
      }
      return this.infosSaison;
    }
    catch (ActionException e)
    {
View Full Code Here

 
 
  @Test
  public final void testInscrireFacture(){
   
    final Saisons saisons = this.evenementsCtrl.getSaisonsObject();
   
    final Evenement evenement = saisons.getEvenements().get(0);
   
    final Course course = (Course) evenement.getCourses().getList().get(0);
   
    final Inscription inscription = (Inscription) course.getInscriptions().getList().get(0);
   
View Full Code Here

   */
  public Courses getCourses() throws ActionException
  {
    if (this.courses == null)
    {
      final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
          "Saisons");
      this.setCourses(saisons.getCoursesDiscipline(this));
    }

    return this.courses;
  }
View Full Code Here

  public CategoriesParticipantes getCategoriesParticipantes()
      throws ActionException, SelectionException
  {
    if (this.categoriesParticipantes == null)
    {
      final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
          "Saisons");
      this.setCategoriesParticipantes(saisons
          .getCategoriesParticipantes(this));
    }
    return this.categoriesParticipantes;
  }
View Full Code Here

  public Tarifications getTarifications() throws ActionException,
      SelectionException
  {
    if (this.tarifications == null)
    {
      final Saisons saisons = (Saisons) this.getDomainModel().getEntry(
          "Saisons");
      this.setTarifications(saisons.getTarificationsCategorie(this));
    }
    return this.tarifications;
  }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.evenements.Saisons

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.