//them loai sp private void btnThem_Click(object sender, EventArgs e) { Loai_DAO loai_dao = new Loai_DAO(); string maloai = txtMaLoai.Text; string tenloai = txtTenLoai.Text; if (KiemTraNhap() == "") { if (loai_dao.KiemTra(maloai) == true) { MessageBox.Show("Mã loại đã tồn tại!"); } else { Loai_DTO loai_dto = new Loai_DTO(); loai_dto.MaLoai = maloai; loai_dto.TenLoai = tenloai; if (loai_dao.ThemLoai(loai_dto) == true) { MessageBox.Show("Thêm thành công!"); } else { MessageBox.Show("Thêm thất bại!"); } } } else { MessageBox.Show(KiemTraNhap()); } }
//hien thi du lieu len bang private void loaisp_Load(object sender, EventArgs e) { Loai_DAO loai_dao = new Loai_DAO(); //datatb.Columns["MaLoai"] = loai_dao.HienThi().Columns["maloai"]; datatb.DataSource = loai_dao.HienThi(); //datatb.AutoResizeColumns(); //datatb.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;//đổ hế grid view }
//sua loai sp private void btnSua_Click(object sender, EventArgs e) { Loai_DAO loai_dao = new Loai_DAO(); string maloai = txtMaLoai.Text; string tenloai = txtTenLoai.Text; if (KiemTraNhap() == "") { Loai_DTO loai_dto = new Loai_DTO(); loai_dto.MaLoai = maloai; loai_dto.TenLoai = tenloai; if (loai_dao.SuaLoai(loai_dto) == true) { MessageBox.Show("Sửa thành công!"); } else { MessageBox.Show("Sửa không thực hiện được!"); } } else { MessageBox.Show(KiemTraNhap()); } }
private void btnTim_Click(object sender, EventArgs e) { string chuoi = txtTim.Text; Loai_DAO loai_dao = new Loai_DAO(); datatb.DataSource = loai_dao.TimKiem(chuoi); }
private void btnTaiLai_Click(object sender, EventArgs e) { Loai_DAO loai_dao = new Loai_DAO(); datatb.DataSource = loai_dao.HienThi(); }
private void btnXoa_Click(object sender, EventArgs e) { if (MessageBox.Show("Bạn muốn xóa loại sản phẩm?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { if (datatb.SelectedRows.Count > 0) { string maloai = datatb.CurrentRow.Cells[0].Value.ToString(); Loai_DAO loai_dao = new Loai_DAO(); if (loai_dao.XoaLoai(maloai) == true) { MessageBox.Show("Xóa thành công!"); } else { MessageBox.Show("Xóa không thực hiện được"); } } } }