Ejemplo n.º 1
0
        private void InsertProduct_Click(object sender, EventArgs e)
        {
            try
            {
                string  pName             = txtProductName.Text;
                decimal pPrice            = Convert.ToDecimal(txtPrice.Text);
                decimal pTax              = Convert.ToDecimal(txtTax.Text);
                decimal pDiscount         = Convert.ToDecimal(txtDiscount.Text);
                string  pDescription      = txtDescription.Text;
                int     pCategoryID       = Convert.ToInt32(comboCategory.SelectedIndex + 1);
                int     pBrandID          = Convert.ToInt32(comboBrand.SelectedIndex + 1);
                string  pFullProductName  = txtFullName.Text;
                string  pShortProductName = txtShortName.Text;

                product.InsertIntoDatabase(pName, pPrice, pTax, pDiscount, pDescription, pCategoryID, pBrandID, pFullProductName, pShortProductName);
                MessageBox.Show("Product was successfully inserted");
            }
            catch (Exception error)
            {
                MessageBox.Show(error.Message, "Insert a new product", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }