/// <summary> /// 获得数据列表 /// </summary> public static DataSet GetList(int Top, string strWhere, string filedOrder) { return(OCSStatusDAL.GetList(Top, strWhere, filedOrder)); }
public static int DeleteBy(string strWhere) { return(OCSStatusDAL.DeleteBy(strWhere)); }
/// <summary> /// 删除一条数据 /// </summary> public static bool Delete(int carId) { return(OCSStatusDAL.Delete(carId)); }
/// <summary> /// 是否存在该记录 /// </summary> public static bool ExistsBy(string strWhere) { return(OCSStatusDAL.ExistsBy(strWhere)); }
public static int getCountByLine(string line) { return(OCSStatusDAL.getCountByLine(line)); }
/// <summary> /// 是否存在该记录 /// </summary> public static bool Exists(int carId) { return(OCSStatusDAL.Exists(carId)); }