private void LoadcbCQ() { List <CoQuanDTO> lstCQ = CoQuanBLL.LoadcbCQ(); cbCoQuan.DataSource = lstCQ; cbCoQuan.DisplayMember = "sTenCQ"; cbCoQuan.ValueMember = "iMaCQ"; }
private void LoadCoQuan() { List <CoQuanDTO> lstCoQuan = CoQuanBLL.LoadCoQuan(); dgvCoQuan.DataSource = lstCoQuan; // Đặt lại tên cho cột dgvCoQuan.Columns["IMaCQ"].HeaderText = "Mã Cơ Quan"; dgvCoQuan.Columns["IMaCQ"].Visible = false; dgvCoQuan.Columns["STenCQ"].HeaderText = "Tên Cơ Quan"; dgvCoQuan.Columns["SDiaChi"].HeaderText = "Địa Chỉ"; dgvCoQuan.Columns["ISDT"].HeaderText = "Số Điện Thoại"; dgvCoQuan.Columns["SNguoiDungDau"].HeaderText = "Người Đứng Đầu"; }
private void btnSua_Click(object sender, EventArgs e) { // Khởi tạo đối tượng CoQuanDTO CoQuanDTO cqDTO = new CoQuanDTO(); cqDTO.IMaCQ = int.Parse(txtMaCQ.Text); cqDTO.STenCQ = txtTenCQ.Text; cqDTO.SDiaChi = txtDiaChi.Text; cqDTO.ISDT = int.Parse(txtSDT.Text); cqDTO.SNguoiDungDau = txtNguoiDungDau.Text; // Gọi lớp nghiệp vụ CoQuanBLL if (CoQuanBLL.SuaCoQuan(cqDTO) == true) { MessageBox.Show("Sửa thành công.", "Thông báo!"); // Load lại dữ liệu LoadCoQuan(); return; } MessageBox.Show("Sửa thất bại.", "Thông báo!"); }
private void btnXoa_Click(object sender, EventArgs e) { if (txtMaCQ.Text == "") { MessageBox.Show("Hãy chọn cơ quan cần xóa.", "Thông báo!"); return; } // Khởi tạo đối tượng CoQuanDTO CoQuanDTO cqDTO = new CoQuanDTO(); cqDTO.IMaCQ = int.Parse(txtMaCQ.Text); // Gọi lớp nghiệp vụ CoQuanBLL if (CoQuanBLL.XoaCoQuan(cqDTO)) { MessageBox.Show("Xóa thành công.", "Thông báo!"); // Load lại dữ liệu LoadCoQuan(); return; } MessageBox.Show("Xóa thất bại.", "Thông báo!"); }
private void btnThem_Click(object sender, EventArgs e) { // Kiểm tra tính hợp lệ của dữ liệu if (txtTenCQ.Text == "" || txtDiaChi.Text == "" || txtSDT.Text == "" || txtNguoiDungDau.Text == "") { MessageBox.Show("Bạn phải nhập đày đủ thông tin.", "Thông báo!"); return; } // Khởi tạo đối tượng CoQuanDTO CoQuanDTO cqDTO = new CoQuanDTO(); cqDTO.STenCQ = txtTenCQ.Text; cqDTO.SDiaChi = txtDiaChi.Text; cqDTO.ISDT = int.Parse(txtSDT.Text); cqDTO.SNguoiDungDau = txtNguoiDungDau.Text; // Gọi tới lơp nghiệp vụ CoQuanBLL if (CoQuanBLL.ThemCoQuan(cqDTO)) { MessageBox.Show("Thêm thành công.", "Thông báo!"); LoadCoQuan(); return; } MessageBox.Show("Thêm thất bại.", "Thông báo!"); }