private void frmCapNhatVatTu_Load(object sender, EventArgs e) { try { SetGridViewStyle(dgvCapNhatVatTu); BindGrid(VatTu.GetAll()); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnXoaDichVuVT_Click(object sender, EventArgs e) { try { int rowIndex = (int)dgvCapNhatVatTu.CurrentRow.Cells[1].Value; VatTu.Delete(rowIndex); BindGrid(VatTu.GetAll()); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnLuuCapNhatVatTu_Click(object sender, EventArgs e) { VatTu s = GetVatTu(); s.VatTuID = (int)dgvCapNhatVatTu.CurrentRow.Cells[1].Value; VatTu db = VatTu.GetVatTu(s.VatTuID); if (db != null) { db = s; db.InsertUpdate(); MessageBox.Show("Sửa thành công!"); } BindGrid(VatTu.GetAll()); }
private void btnThemDichVuVT_Click(object sender, EventArgs e) { try { VatTu s = GetVatTu(); VatTu db = VatTu.GetVatTu(s.VatTuID); if (db == null) { s.InsertUpdate(); MessageBox.Show("Thêm vật tư thành công!"); } BindGrid(VatTu.GetAll()); } catch (Exception ex) { MessageBox.Show(ex.Message); } }