internal string obtenirNomTranche(string p)
        {
            TrancheBE tranche = new TrancheBE();

            tranche.codetranche = p;
            tranche             = trancheDA.rechercher(tranche);
            return(tranche.nomtranche);
        }
Esempio n. 2
0
 internal TrancheBE rechercherTranche(TrancheBE trancheBE)
 {
     return(trancheDA.rechercher(trancheBE));
 }
Esempio n. 3
0
 // rechercher une Tranche
 public TrancheBE rechercherTranche(TrancheBE tranche)
 {
     return(trancheDA.rechercher(tranche));
 }