Exemple #1
0
 public Menu(String Title, Chain Chain)
     : base()
 {
     this.Title = Title;
     this.Chain = Chain;
     this.Items = new Collection<Item>();
 }
 public Restaurant( Chain Chain, Address Address )
     : base()
 {
     this.Chain = Chain;
     this.Address = Address;
     this.Representatives = new Collection<Representative>();
 }