private void CapQuyen() { CapQuyenHoiNghiWindow window = new CapQuyenHoiNghiWindow(this.HoiNghi, "1"); window.Show(); this.Window.Close(); }
private void CapQuyen() { if (!IsSaved) { MessageBox.Show("Hội nghị phải được lưu trước khi cấp quyền."); return; } using (DBQuanLiHoiNghiEntities db = new DBQuanLiHoiNghiEntities()) { HOINGHI hoiNghi = (HOINGHI)db.HOINGHIs.Where(hn => hn.IDHN == SavedId).FirstOrDefault(); CapQuyenHoiNghiWindow window = new CapQuyenHoiNghiWindow(hoiNghi, "0"); //this.Window.Show(); window.Show(); this.Window.Close(); } }