Exemplo n.º 1
0
 //Déclaration des constructeurs
 #region Constructors
 public Commande(string noCommand, Vendeur vendeur, Clientel client, string date, bool facture)
 {
     NoCommand = noCommand;
     Vendeur   = vendeur;
     Client    = client;
     Date      = date;
     Facture   = facture;
 }
Exemplo n.º 2
0
 public Commande()
 {
     NoCommand = "0";
     Vendeur   = new Vendeur();
     Client    = new Clientel();
 }