private void butxoa_Click(object sender, EventArgs e) { if (txtmadg.Text == "") { MessageBox.Show("Chưa chọn thông tin"); return; } docgia dg = new docgia(); dg.madg = txtmadg.Text; dg.tendg = txttendg.Text; dg.ngaysinh = datengaysinh.Value; dg.diachi = txtdiachi.Text; if (MessageBox.Show(string.Format("Xóa độc giả"), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.DeleteProfile(dg) > 0) { MessageBox.Show("Đã xóa"); Docgia_Load(sender, e); } else { MessageBox.Show("Thông tin chưa được xóa"); } } }
private void butluu_Click(object sender, EventArgs e) { if (txtmadg.Text == "" || txttendg.Text == "") { MessageBox.Show("Chưa nhập đủ thông tin"); return; } docgia dg = new docgia(); dg.madg = txtmadg.Text; dg.tendg = txttendg.Text; dg.ngaysinh = datengaysinh.Value; dg.diachi = txtdiachi.Text; if (MessageBox.Show(string.Format("Thêm độc giả"), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.InsertProfile(dg) > 0) { MessageBox.Show("Đã thêm"); Docgia_Load(sender, e); } else { MessageBox.Show("Lỗi"); } } }
public bool Edit(docgia dg) { var obj = db.docgias.First(m => m.sothe == dg.sothe); if (obj != null) { try { obj.hoten = dg.hoten; obj.ngaysinh = dg.ngaysinh; obj.gioitinh = dg.gioitinh; obj.email = dg.email; obj.diachi = dg.diachi; obj.socmtnd = dg.socmtnd; obj.ngaylamthe = dg.ngaylamthe; obj.handungthe = dg.handungthe; db.SubmitChanges(); } catch (Exception) { return(false); throw; } } return(true); }
private void butsua_Click(object sender, EventArgs e) { if (txtmadg.Text == "" || txttendg.Text == "") { MessageBox.Show("Chưa nhập đủ thông tin"); return; } docgia dg = new docgia(); dg.madg = txtmadg.Text; dg.tendg = txttendg.Text; dg.diachi = txtdiachi.Text; if (MessageBox.Show(string.Format("Sửa độc giả "), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.UpdateProfile(dg) > 0) { MessageBox.Show("Đã sửa"); Docgia_Load(sender, e); } else { MessageBox.Show("Thông tin chưa được sửa"); } } }
private void brnsua_Click(object sender, EventArgs e) { if (txtmadg.Text == "" || txttendg.Text == "") { MessageBox.Show("Chưa nhập đủ thông tin"); return; } docgia dg = new docgia(); dg.madg = txtmadg.Text; dg.tendg = txttendg.Text; dg.diachi = txtdiachi.Text; dg.loaidg = cbxloaidg.Text; dg.nganh = cbxnganh.Text; dg.Lop = cbxlop.Text; dg.khoahoc = txtkhoahoc.Text; dg.ngaysinh = datengaysinh.Value; dg.ngaycapnhat = datengaycapnhat.Value; if (MessageBox.Show(string.Format("Sửa độc giả "), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.UpdateProfile(dg) > 0) { MessageBox.Show("Đã sửa"); Docgia_Load(sender, e); } else { MessageBox.Show("Thông tin chưa được sửa"); } } }
public static int DeleteProfile(docgia dg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@ma", dg.madg), new SqlParameter("@ten", dg.tendg) }; return(DataProvider.ExecuteNonQuery("xoadocgia", para)); }
public static int UpdateProfile(docgia dg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@ma", dg.madg), new SqlParameter("@ten", dg.tendg), new SqlParameter("@diachi", dg.diachi) }; return(DataProvider.ExecuteNonQuery("suadocgia", para)); }
public static int InsertProfile(docgia dg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@ma", dg.madg), new SqlParameter("@ten", dg.tendg), new SqlParameter("@diachi", dg.diachi), new SqlParameter("@ngaysinh", dg.ngaysinh) }; return(DataProvider.ExecuteNonQuery("themdocgia", para)); }
private void Luu_DG_Click(object sender, EventArgs e) { if (Them_bool == true && Sua_bool == false) { var entity = new docgia(); entity.sothe = Convert.ToInt32(sothetxt.Text); entity.hoten = tendgtxt.Text; entity.ngaysinh = ngaysinhdg.Value; entity.gioitinh = gioitinhdgtxt.Text; entity.diachi = diachidgtxt.Text; entity.email = emaildgtxt.Text; entity.socmtnd = socmtnddgtxt.Text; entity.ngaylamthe = ngaythedg.Value; entity.handungthe = hanthedg.Value; var dg = new DocGiaController(); if (dg.Add(entity) > 0) { HienThi_DG(); } else { MessageBox.Show("Thêm độc giả không thành công"); } } if (Them_bool == false && Sua_bool == true) { var entity = new docgia(); entity.sothe = Convert.ToInt32(sothetxt.Text); entity.hoten = tendgtxt.Text; entity.ngaysinh = ngaysinhdg.Value; entity.gioitinh = gioitinhdgtxt.Text; entity.diachi = diachidgtxt.Text; entity.email = emaildgtxt.Text; entity.socmtnd = socmtnddgtxt.Text; entity.ngaylamthe = ngaythedg.Value; entity.handungthe = hanthedg.Value; var dg = new DocGiaController(); if (dg.Edit(entity)) { HienThi_DG(); } else { MessageBox.Show("Sửa độc giả không thành công"); } } btn_enable(false); }
public int Add(docgia dg) { try { db.docgias.InsertOnSubmit(dg); db.SubmitChanges(); return(dg.sothe); } catch (Exception) { return(0); throw; } }
public static int DeleteProfile(docgia dg) { return(Dao.DeleteProfile(dg)); }
public static int UpdateProfile(docgia dg) { return(Dao.UpdateProfile(dg)); }
public static int InsertProfile(docgia dg) { return(Dao.InsertProfile(dg)); }