public int Update(TrinhDoVH obj) { SqlParameter[] para = { new SqlParameter("IDTrinhDoVH", obj.IDTrinhDoVH), new SqlParameter("TenTrinhDoVH", obj.TenTrinhDoVH) }; return(db.ExecuteSQL("TrinhDoVH_Update", para)); }
public int Insert(TrinhDoVH obj) { SqlParameter[] para = { new SqlParameter("IDTrinhDoVH", obj.IDTrinhDoVH), new SqlParameter("TenTrinhDoVH", obj.TenTrinhDoVH), }; return(db.ExecuteSQL("TrinhDoVH_Insert", para)); }
public int Update(TrinhDoVH obj) { return(dao.Update(obj)); }
public int Insert(TrinhDoVH obj) { return(dao.Insert(obj)); }