private void btnCreate_Click(object sender, EventArgs e)
        {
            NewProductClass NewP = new NewProductClass();

            NewP.name  = ProName.Text;
            NewP.disc  = ProDis.Text;
            NewP.price = ProPrice.Value;
            ProductContainer con = new ProductContainer(NewP);
        }
Ejemplo n.º 2
0
 public ProductContainer(NewProductClass NPro)
 {
     InitializeComponent();
     this.NewPro = NPro;
 }