Esempio n. 1
0
 private void btnEditInput_Click(object sender, EventArgs e)
 {
     if (txtAllProductInputName.Text != string.Empty && txtAllInputPrice.Text != string.Empty && txtAllInputPrice.Text != "0")
     {
         productIP       = new Data.ProductIP();
         productIP.Name  = txtAllProductInputName.Text;
         productIP.Price = int.Parse(txtAllInputPrice.Text);
         productIP.ID    = productIBO.GetIDByName(txtAllProductInputName.Text);
         productIBO.Update(productIP);
         MessageBox.Show("Hệ thống cập nhật thành công");
         loadInformation();
     }
     else
     {
         MessageBox.Show("Hệ thống cập nhật thất bại");
     }
 }