コード例 #1
0
 //Save data
 private void btnCreate_Click(object sender, EventArgs e)
 {
     if (this.ValidateChildren(ValidationConstraints.Enabled))
     {
         int             id       = int.Parse(BoxIdProduct.Text);
         string          product  = BoxNameProduct.Text;
         int             quantity = int.Parse(BoxQuantity.Text);
         System.DateTime date     = dateTimeProduct.Value;
         productController.convertToModelProdut(id, product, quantity, date);
         MessageBox.Show("Producto Registrado con éxito", "Valid", MessageBoxButtons.OK);
         cleanFields();
     }
     else
     {
         MessageBox.Show("Faltan algunos campos por rellenar");
     }
 }