private TranDau GetValue_TranDau() { TranDau a = new TranDau(); if (mode == 1 || mode == 2) { int ma = dataGridView1_thidau.Rows.Count; if (ma > 0) { a.Matrd = dataGridView1_thidau.Rows[ma - 1].Cells[0].Value.ToString(); } else { a.Matrd = ""; } } else { a.Matrd = tbMaTrD.Text; } a.Ngaygio = dateTimeNgayGio.Value.Date; a.GioThiDau = cbbGioThiDau.Text + ":" + cbbPhutThiDau.Text; a.Vong = int.Parse(cbbVong.Text); //Bi MaDB_1_dataGridView1.DataSource = ql.TimMaDBTheoTen(cbbMaDB1.Text); MaDB_2_dataGridView1.DataSource = ql.TimMaDBTheoTen(cbbMaDB2.Text); MaSan_dataGridView2.DataSource = ql.TimMaSanTheoTen(cbbMaSan.Text); if (MaDB_1_dataGridView1[0, 0].Value != null) a.Madb1 = MaDB_1_dataGridView1[0, 0].Value.ToString(); if (MaDB_2_dataGridView1[0, 0].Value != null) a.Madb2 = MaDB_2_dataGridView1[0, 0].Value.ToString(); if (MaSan_dataGridView2[0, 0].Value != null) a.Masan = MaSan_dataGridView2[0, 0].Value.ToString(); return a; }
public bool Update_TranDau(TranDau a) { return xl.Update_TranDau(a); }
public bool Delete_TranDau(TranDau a) { return xl.Delete_TranDau(a); }
//tab xep lich thi dau public bool Insert_TranDau(TranDau a) { return xl.insert_TranDau(a); }
private void btXoaThiDau_Click(object sender, EventArgs e) { mode = 2; int flg = 0; foreach (DataGridViewRow item in dataGridView1_thidau.SelectedRows) { TranDau td = new TranDau(); td.Matrd = item.Cells[0].Value.ToString(); if (qltd.Delete_TranDau(td)) { flg = 1; } dataGridView1_thidau.Rows.RemoveAt(item.Index); } if (flg == 1) { MessageBox.Show("Xoá trận đấu thành công"); this.LoadTranDau(); } else { MessageBox.Show("Qúa trình thực hiện thất bại"); } //if (!DataUtils.KiemTra(tbMaTrD.Text)) //{ // MessageBox.Show("Bạn chưa chọn thông tin để xoá"); //} //else if (ql.Delete_TranDau(GetValue_TranDau())) //{ // MessageBox.Show("Xoá thành công"); // this.LoadTranDau(); //} //else //{ // MessageBox.Show("Xoá thất bại"); //} }