Exemplo n.º 1
0
 public static void ThemHH(CHangHoa hh)
 {
     try
     {
         HangHoa dao = new HangHoa();
         dao.ThemHangHoa(hh);
     }
     catch (SqlException ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 private void btnLuuLai_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     if (themmoi)
     {
         try
         {
             if (pic_HinhAnh.Image != null)
             {
                 hh.ThemHangHoa(txtMaHang.Text, txtTenHang.Text, txtSoLuong.Text, txtDonGia.Text,
                                cb_MaNhaCC.SelectedValue.ToString(), cb_MaLoai.SelectedValue.ToString(), txtND_TomTat.Text, cb_DVT.SelectedItem.ToString(), convertImageToBytes());
                 MessageBox.Show("Thêm thành công", "thông báo");
             }
             else
             {
                 MessageBox.Show("Bạn chưa thêm ảnh của hàng hóa", "Thông báo");
             }
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message, "Thông báo");
         }
     }
     else
     {
         if (pic_HinhAnh.Image != null)
         {
             hh.CapNhatHangHoa(txtMaHang.Text, txtTenHang.Text, txtSoLuong.Text, txtDonGia.Text,
                               cb_MaNhaCC.SelectedValue.ToString(), cb_MaLoai.SelectedValue.ToString(), txtND_TomTat.Text, cb_DVT.SelectedItem.ToString(),
                               convertImageToBytes());
             MessageBox.Show("Cập nhật thành công", "Thông báo");
         }
         else
         {
             MessageBox.Show("Bạn chưa thêm ảnh của hàng hóa", "Thông báo");
         }
     }
     HienThiDS_HH();
     clearForm();
     SetTextBox(false);
     SetButton(true);
     btn_ChonHinh.Enabled = false;
     lsvHangHoa.Enabled   = true;
 }