Example #1
0
 public PizzaModel(long pmId, string userId)
 {
     this.PizzaModelID = pmId;
     tomato = new Tomato();
     mozzarella = new Mozzarella();
     this.Id = userId;
 }
Example #2
0
 public Pizza(Tomato tomato, Mozzarella mozzarella)
 {
     this.tomato = tomato;
     this.mozzarella = mozzarella;
 }
Example #3
0
 public Pizza()
 {
     tomato = new Tomato();
     mozzarella = new Mozzarella();
 }