コード例 #1
0
 public Product(string naam, double prijs, int score, Specificatie specificatie)
 {
     this.Naam         = naam;
     this.Prijs        = prijs;
     this.Score        = score;
     this.Specificatie = specificatie;
     Reviews           = new List <Review>();
 }
コード例 #2
0
 public Product(string naam, double prijs, int score, Specificatie specificatie)
 {
     this.Naam = naam;
     this.Prijs = prijs;
     this.Score = score;
     this.Specificatie = specificatie;
     Reviews = new List<Review>();
 }