private void frmDM_PhongBan_OnThemMoi(object sender, EventArgs e)
        {
            isAdd = true;
            frmChiTiet_PhongBan frm = new frmChiTiet_PhongBan(this);

            frm.ShowDialog();
        }
 void frmDM_PhongBan_OnGridDoubleClick(object sender, EventArgs e)
 {
     if (Oid > 0)
     {
         isAdd = false;
         frmChiTiet_PhongBan frm = new frmChiTiet_PhongBan(this);
         frm.ShowDialog();
     }
 }
 private void frmDM_PhongBan_OnCapNhat(object sender, EventArgs e)
 {
     if (Oid > 0)
     {
         isAdd = false;
         frmChiTiet_PhongBan frm = new frmChiTiet_PhongBan(this);
         frm.ShowDialog();
     }
 }