public static IList <UserFieldInfo> GetTopNList(int intTopCount, string strSort) { return(UserField.GetList(intTopCount, string.Empty, strSort)); }
public static IList <UserFieldInfo> GetList(int intTopCount, string strCondition) { string strSort = " Sort asc,AutoID desc "; return(UserField.GetList(intTopCount, strCondition, strSort)); }
public static IList <UserFieldInfo> GetAllList() { return(UserField.GetList(0, string.Empty)); }