public void sual(EC_tb_Nhaphathanh l) { string sql = (@"UPDATE tb_Nhaphathanh SET tennhaphathanh =N'" + l.TENNHAPHATHANH + "' where manhaphathanh =N'" + l.MANHAPHATHANH + "'"); cn.ExcuteNonQuery(sql); }
public void themoil(EC_tb_Nhaphathanh l) { if (!Lsql.kiemtral(l.MANHAPHATHANH)) { Lsql.themmoil(l); } else { MessageBox.Show("Mã này đã tồn tại,xin chọn Mã khác", "Chú Ý", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public void xoal(EC_tb_Nhaphathanh l) { cn.ExcuteNonQuery("DELETE FROM [tb_Nhaphathanh] WHERE [manhaphathanh] = N'" + l.MANHAPHATHANH + "'"); }
public void themmoil(EC_tb_Nhaphathanh l) { cn.ExcuteNonQuery(@"INSERT INTO tb_Nhaphathanh (manhaphathanh, tennhaphathanh) VALUES (N'" + l.MANHAPHATHANH + "',N'" + l.TENNHAPHATHANH + "')"); }
public void xoal(EC_tb_Nhaphathanh l) { Lsql.xoal(l); }
public void sual(EC_tb_Nhaphathanh l) { Lsql.sual(l); }