Examples of Journalisation


Examples of fr.aston.gestionconges.utilitaires.Journalisation

    return null;
  }

  public Collection<Employe> listerEmployesByDateDemande(Date dateConges) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("listerEmployesByDateDemande", dateConges);
    return null;
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

    return null;
  }

  public void modifierDemandeConges(DemandeConges demande) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("modifierDemandeConges", demande);

  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

  }

  public void supprimerDemandeConges(int idDemande) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("supprimerDemandeConges", idDemande);

  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

  }

  public void validerDemandeConges(DemandeConges demande) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("validerDemandeConges", demande);


  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.