Ejemplo n.º 1
0
        private void btnLuu_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
        {
            if (them)
            {
                try
                {
                    BLNhaXuatBan blNXB = new BLNhaXuatBan();

                    blNXB.ThemNhaXuatBan(MaNXB, TenNXB, DiaChi, SDT, NgayThanhLap, ref err);

                    LoadData();

                    XtraMessageBox.Show("Đã thêm xong!");
                }
                catch
                {
                    XtraMessageBox.Show("Không thêm được. Lỗi rồi!");
                }
            }
            else
            {
                try
                {
                    BLNhaXuatBan blNXB = new BLNhaXuatBan();

                    blNXB.CapNhatNhaXuatBan(MaNXB, TenNXB, DiaChi, SDT, NgayThanhLap, ref err);

                    LoadData();

                    XtraMessageBox.Show("Đã sửa xong!");
                }
                catch (SqlException ex)
                {
                    XtraMessageBox.Show(ex.Message);
                }
            }
        }