Пример #1
0
 public void Modify(string nombre, Carne carne, double precio, string ingrediente)
 {
     this.nombre       = nombre;
     this.TipoDeCarne  = carne;
     this.precio       = precio;
     this.ingredientes = ingrediente;
 }
Пример #2
0
 public Hamburguesa(string nombre, Carne carne, double precio, /*List<Ingrediente> x,*/ string ingrediente)
 {
     this.nombre      = nombre;
     this.TipoDeCarne = carne;
     this.precio      = precio;
     /*this.listaIngrediente = x;*/
     this.Ingredientes = ingrediente;;
 }