private void btnPeperoni_Click(object sender, EventArgs e) { p = new CndPeperoni(p); lblVistaCondimento.Text = p.Descripcion(); lblVistaPrecio.Text = p.precio().ToString(); }
private void btnSalchicha_Click(object sender, EventArgs e) { p = new CndSalchicha(p); lblVistaCondimento.Text = p.Descripcion(); lblVistaPrecio.Text = p.precio().ToString(); }
private void btnBRelleno_Click(object sender, EventArgs e) { p = new BordeRelleno(); lblVistaBorde.Text = p.Descripcion(); lblVistaPrecio.Text = p.precio().ToString(); }