public Comida() { tipo = new TipoInsumo(); tipo.id = 2; tipo.descripcion = "Comida"; }
public Bebida() { tipo = new TipoInsumo(); tipo.descripcion = "bebida"; tipo.id = 1; }