Beispiel #1
0
 //Constructor
 public Componente(Ingrediente ingrediente, decimal cantidadNecesaria, UnidadDeMedida unidadDeMedida)
 {
     this.Ingrediente       = ingrediente;
     this.CantidadNecesaria = cantidadNecesaria;
     this.UdM = unidadDeMedida;
 }
Beispiel #2
0
 public virtual void EliminarIngrediente(Ingrediente ingrediente)
 {
     throw new NotImplementedException();
 }