Beispiel #1
0
 /// <summary>
 /// 删除用户信息
 /// </summary>
 /// <param name="Index"></param>
 public void Delete(int Index)
 {
     //删除用户信息
     db.Delete("UserInfo", new string[] { "Idx" }, new string[] { Index.ToString() });
 }
Beispiel #2
0
 /// <summary>
 /// 删除车辆信息
 /// </summary>
 /// <param name="Index"></param>
 public void Delete(int Index)
 {
     db.Delete("CarInfo", new string[] { "Idx" }, new string[] { Index.ToString() });
 }
Beispiel #3
0
 /// <summary>
 /// 删除所有路面类型信息
 /// </summary>
 /// <param name="Index"></param>
 private void DeleteAllPavementTypeInfo(int Index)
 {
     db.Delete("PavementTypeInfo", new string[] { "Idx" }, new string[] { Index.ToString() });
 }