Пример #1
0
 private void btnAddInput_Click(object sender, EventArgs e)
 {
     if (txtInputName.Text != string.Empty && txtInputPrice.Text != string.Empty && int.Parse(txtInputPrice.Text) > 0)
     {
         bool isExist = productIBO.isExistName(txtInputName.Text);
         if (!isExist)
         {
             productIP       = new Data.ProductIP();
             productIP.Name  = txtInputName.Text;
             productIP.Price = int.Parse(txtInputPrice.Text);
             bool check = productIBO.Add(productIP);
             if (check)
             {
                 MessageBox.Show("Thêm thành công ");
             }
             else
             {
                 MessageBox.Show("Thêm thất bại");
             }
             loadInformation();
             txtInputName.Text  = string.Empty;
             txtInputPrice.Text = string.Empty;
         }
         else
         {
             MessageBox.Show("Hàng này đã tồn tại");
         }
     }
     else
     {
         MessageBox.Show("Không hợp lệ");
     }
 }
Пример #2
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");
     }
 }