private void butxoa_Click(object sender, EventArgs e) { if (txtsothe.Text == "" || txtmadg.Text == "") { MessageBox.Show("Chưa chọn thông tin"); return; } Thedocgia tdg = new Thedocgia(); tdg.sothe = txtsothe.Text; tdg.ngaylam = datengaylam.Value; tdg.ngayhethan = datengaylam.Value; tdg.matt = txtmatt.Text; tdg.madg = txtmadg.Text; if (MessageBox.Show(string.Format("Xóa thẻ độc giả "), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.DeleteProfile(tdg) > 0) { MessageBox.Show("Đã xóa"); thedocgia_Load(sender, e); } else { MessageBox.Show("Thông tin chưa được xóa"); } } }
private void butluu_Click(object sender, EventArgs e) { if (txtsothe.Text == "" || txtmadg.Text == "") { MessageBox.Show("Chưa nhập đủ thông tin"); return; } Thedocgia tdg = new Thedocgia(); tdg.sothe = txtsothe.Text; tdg.ngaylam = datengaylam.Value; tdg.ngayhethan = datengaylam.Value; tdg.matt = txtmatt.Text; tdg.madg = txtmadg.Text; if (MessageBox.Show(string.Format("thêm thẻ độc giả"), "", MessageBoxButtons.OKCancel) == DialogResult.OK) { if (Bus.InsertProfile(tdg) > 0) { MessageBox.Show("Đã thêm"); thedocgia_Load(sender, e); } else { MessageBox.Show("Mã thủ thư đã tồn tại"); } } }
public static int DeleteProfile(Thedocgia tdg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@sothe", tdg.sothe), }; return(DataProvider.ExecuteNonQuery("xoathedocgia", para)); }
public static int UpdateProfile(Thedocgia tdg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@sothe", tdg.sothe), new SqlParameter("@ngaylam", tdg.ngaylam), }; return(DataProvider.ExecuteNonQuery("suathedocgia", para)); }
public static int InsertProfile(Thedocgia tdg) { SqlParameter[] para = new SqlParameter[] { new SqlParameter("@sothe", tdg.sothe), new SqlParameter("@ngaylam", tdg.ngaylam), new SqlParameter("@ngayhethan", tdg.ngayhethan), new SqlParameter("@madg ", tdg.madg), new SqlParameter("@matt ", tdg.matt) }; return(DataProvider.ExecuteNonQuery("themthedocgia", para)); }
public static int DeleteProfile(Thedocgia tdg) { return(Dao.DeleteProfile(tdg)); }
public static int UpdateProfile(Thedocgia tdg) { return(Dao.UpdateProfile(tdg)); }
public static int InsertProfile(Thedocgia tdg) { return(Dao.InsertProfile(tdg)); }