Package org.xrace.model

Examples of org.xrace.model.PersonneCategorie


    List<InfoSaison> infosSaison = findBySaison(saison);
    Map<PersonneCategorie, InfoSaison> result = new HashMap<PersonneCategorie, InfoSaison>();

    for (InfoSaison infoSaison : infosSaison)
    {
      PersonneCategorie pc = new PersonneCategorie(infoSaison
          .getPersonne(), infoSaison.getCategorie());
      result.put(pc, infoSaison);
    }

    return result;
View Full Code Here


      personneTransaction = (transaction == null ? null : transaction
          .getPersonne());

      InfoSaison infoSaison = infoSaisonByPersonneMap
          .get(new PersonneCategorie(personneInscrite, categorie));

      final DossierInscription dossier = new DossierInscription(
          personneInscrite, personneTransaction, inscription, course,
          categorie, club, facture, factureItem, transaction,
          infoSaison);
View Full Code Here

TOP

Related Classes of org.xrace.model.PersonneCategorie

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.