private void btnLuu_Click(object sender, EventArgs e) { if (txtBacLuong.Text == "" || txtLuongCB.Text == "" || txtLuongtangca.Text == "") { MessageBox.Show("Bạn Cần Điền Đầy Đủ Thông Tin Trước Khi Lưu", "Thông Báo"); } else if (check == 1) { HeSoLuong qh = new HeSoLuong(); qh.BacLuong = txtBacLuong.Text; qh.LuongCB = float.Parse(txtLuongCB.Text); qh.LuongTangCa = float.Parse(txtLuongtangca.Text); if (HeSoLuongCtrl.InsertProfile(qh) > 0) { MessageBox.Show("Thêm mới thành công"); UCHeSoLuong_Load(sender, e); dgvHeSoLuong.Enabled = true; } else { MessageBox.Show("Không thể thêm mới"); } } else { HeSoLuong qh = new HeSoLuong(); qh.BacLuong = txtBacLuong.Text; qh.LuongCB = float.Parse(txtLuongCB.Text); qh.LuongTangCa = float.Parse(txtLuongtangca.Text); if (HeSoLuongCtrl.UpdateProfile(qh) > 0) { MessageBox.Show("Sửa thành công"); UCHeSoLuong_Load(sender, e); dgvHeSoLuong.Enabled = true; } else { MessageBox.Show("Không thể Sửa"); } } }
public void LoadData() { dt1 = new DataTable(); dt1 = HeSoLuongCtrl.GetData(); dgvHeSoLuong.DataSource = dt1; txtBacLuong.Enabled = false; txtLuongCB.Enabled = false; txtLuongtangca.Enabled = false; txtTimKiem.Enabled = true; btnHuy.Enabled = false; btnLuu.Enabled = false; btnThem.Enabled = true; btnSua.Enabled = true; btnXoa.Enabled = true; }
private void btnXoa_Click(object sender, EventArgs e) { if (txtBacLuong.Text == "") { MessageBox.Show("Bạn cần chọn Bậc Lương để xóa !", "Thông Báo"); } else if (MessageBox.Show("Bạn có chắc chắn muốn xóa Lương " + txtBacLuong.Text + "?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { HeSoLuong qh = new HeSoLuong(); qh.BacLuong = txtBacLuong.Text; if (HeSoLuongCtrl.DeleteProfile(qh) > 0) { MessageBox.Show("Xóa thành công"); UCHeSoLuong_Load(sender, e); } else { MessageBox.Show("Không thể Xóa"); } } }
public void LoadDataLuong() { cmbBacLuong.DataSource = HeSoLuongCtrl.GetData(); cmbBacLuong.ValueMember = "BacLuong"; cmbBacLuong.DisplayMember = "BacLuong"; }