Example #1
0
 public VenteCarte(LivraisonCarte livraison, int quantite, PointDeVente point_de_vente, DateTime date_vente)
 {
     this.Livraison      = livraison;
     this.Quantite       = quantite;
     this.Point_de_vente = point_de_vente;
     this.Date_vente     = date_vente;
 }
Example #2
0
 public LivraisonCarte(EmployeStock employeStock, int quantite,
                       int resteNonVendu, DateTime date, PointDeVente pointDeVente)
 {
     this.EmployeStock  = employeStock;
     this.Quantite      = quantite;
     this.ResteNonVendu = resteNonVendu;
     this.Date          = date;
     this.PointDeVente  = pointDeVente;
 }
Example #3
0
 public LivraisonCarte(int id, DistributionCarte distributionCarte, Employe employe, int quantite,
                       int resteNonVendu, DateTime date, PointDeVente pointDeVente)
 {
     this.Id = id;
     this.DistributionCarte = distributionCarte;
     this.Employe           = employe;
     this.Quantite          = quantite;
     this.ResteNonVendu     = resteNonVendu;
     this.Date         = date;
     this.PointDeVente = pointDeVente;
 }
Example #4
0
 public LivraisonCarte(int id, EmployeStock employeStock, int quantite,
                       int resteNonVendu, DateTime date, PointDeVente pointDeVente, DistributionCarte idDistribution)
 {
     this.Id             = id;
     this.EmployeStock   = employeStock;
     this.Quantite       = quantite;
     this.ResteNonVendu  = resteNonVendu;
     this.Date           = date;
     this.PointDeVente   = pointDeVente;
     this.IdDistribution = idDistribution;
 }