Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public Commande(double montant, double poids,ICoutLivraison liv) {
  2. assert montant > 0 && poids > 0;
  3. this.montant = montant;
  4. this.poids = poids;
  5. this.coutLivraison = liv;
  6.  
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement