Пример #1
0
        private void barButtonItem1_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            BUSDoiTac      b = new BUSDoiTac();
            DTONhaPhanPhoi d = new DTONhaPhanPhoi();

            d.MaNPP       = textEdit1.Text;
            d.TenNPP      = textEdit2.Text;
            d.DiaChi      = textEdit3.Text;
            d.MaSoThue    = textEdit4.Text;
            d.Fax         = textEdit5.Text;
            d.SODT        = textEdit6.Text;
            d.Mobile      = textEdit7.Text;
            d.Email       = textEdit8.Text;
            d.Website     = textEdit9.Text;
            d.TaiKhoan    = textEdit10.Text;
            d.NganHang    = textEdit11.Text;
            d.NguoiLienHe = textEdit12.Text;
            d.ChucVu      = textEdit13.Text;
            d.MaKhuVuc    = comboBoxEdit1.Text;
            d.GioiHanNo   = comboBoxEdit2.Text;
            d.NoHienTai   = comboBoxEdit3.Text;
            d.ChietKhau   = comboBoxEdit4.Text;
            d.ConQuanLy   = checkEdit1.Checked;
            if (isAddForm)
            {
                if (b.insertNhaPhanPhoi(d))
                {
                    MessageBox.Show("Thao tác thành công");
                }
                else
                {
                    MessageBox.Show("Thao tác không thành công");
                }
            }
            else
            {
                b.updateNhaPhanPhoi(d);
                MessageBox.Show("Thao tác hóa thành công");
            }
        }