Package net.fqsc.inscriptions.model.facturation

Examples of net.fqsc.inscriptions.model.facturation.Transaction


    Validate.argNotNull(personne, "Personne");
    Validate.argNotNull(facture, "Facture");
    Validate.argNotNull(montant, "Montant");

    Transaction transaction = null;
    final Transactions transactions = (Transactions) this.domainModel
        .getEntry("Transactions");

    transaction = transactions
        .createTransaction(personne, facture, montant);
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.facturation.Transaction

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.