예제 #1
0
 public Produit(string p_Nom, string p_Description, decimal p_Prix, string p_Image, CategorieProduit p_Categorie) :
     this(0, p_Nom, p_Description, p_Prix, p_Image, p_Categorie)
 {
 }
예제 #2
0
 public ProdView(Produit p_Produit)
 {
     this.Nom         = p_Produit.Nom;
     this.Prix        = p_Produit.Prix;
     this.m_Categorie = p_Produit.Categorie;
 }
예제 #3
0
 public Produit(int p_Id, string p_Nom, string p_Description, decimal p_Prix, string p_Image, CategorieProduit p_Categorie)
 {
     this.Id          = p_Id;
     this.Nom         = p_Nom;
     this.Description = p_Description;
     this.Prix        = p_Prix;
     this.Image       = p_Image;
     this.Categorie   = p_Categorie;
 }