public Brood(string beschrijving, BroodSoort soort, decimal prijs) { this.beschrijving = beschrijving; this._Soort = soort; this.prijs = prijs; }
public Broodje(string naam, BroodSoort broodsoort) { this.Naam = naam; this.BroodSoort = broodsoort; }
public Brood(string naam, double prijs, string beschrijving, BroodSoort broodsoort) : base(naam, prijs, beschrijving) { this.BroodSoort = broodsoort; }