//ngay chieu phim cua Suat chieu private DateTime NgayChieuPhim(int pMaSuatChieu) { DateTime ngay; SuatChieu sc = new SuatChieu(); SuatChieuDB scDB = new SuatChieuDB(); sc = scDB.ThongTinSuatChieu(pMaSuatChieu); ngay = sc.NgayChieu; return ngay; }
private void HienThiDatCho(DatCho datcho) { if (datcho!=null) { txtCMND.Text = datcho.CMND; txtDienThoai.Text = datcho.SoDienThoai; txtCacSoGhe.Text = datcho.CacSoGhe; txtSoLuongCho.Text = datcho.SoLuongCho.ToString(); dtpNgayDatCho.Text = datcho.NgayDat.ToString(); int matrangthai = 0; matrangthai = datcho.MaTrangThai; cboTrangThaiDatCho.SelectedValue = matrangthai; maSuatChieu = datcho.MaSuatChieu; SuatChieuDB suatchieuDB = new SuatChieuDB(); txtSuatChieu.Text = suatchieuDB.TinSuatChieu(maSuatChieu); DanhSachVePhim(txtCacSoGhe.Text); } else { MessageBox.Show("Ko co Ma DatCho nay!"); } }