Example #1
0
        public void CalculerHeure(Boolean Propager = true)
        {
            Montant = Qte * Poste.Chantier.TauxHoraire;

            if (Propager)
            {
                Poste.CalculerHeure();
            }
        }
Example #2
0
        public override bool Supprimer()
        {
            if (!EstCharge)
            {
                return(false);
            }

            Poste.ListeHeure.Remove(this);

            Bdd2.Supprimer(this);

            Poste.CalculerHeure();

            return(true);
        }