public Estimation(string idEstimation, Produit produit, Commissaire commissaire, DateTime dateEstimation,
                   double prixEstimation)
 {
     IdEstimation          = idEstimation;
     ProduitEstimation     = produit;
     CommissaireEstimation = commissaire;
     DateEstimation        = dateEstimation;
     PrixEstimation        = prixEstimation;
 }
Exemple #2
0
 public Enchere(string idEnchere, double prixProposer, bool isAdjuger, DateTime dateHeureVente,
                OrdreAchat ordreOrdreAchatEnchere, Lot lot, Commissaire commissaire, Utilisateur utilisateur)
 {
     IdEnchere          = idEnchere;
     PrixProposer       = prixProposer;
     IsAdjuger          = isAdjuger;
     DateHeureVente     = dateHeureVente;
     OrdreAchatEnchere  = ordreOrdreAchatEnchere;
     LotEnchere         = lot;
     CommissaireEnchere = commissaire;
     UtilisateurEnchere = utilisateur;
 }