Пример #1
0
 public static IList <PostageModelInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(PostageModel.GetList(intTopCount, string.Empty, strSort));
 }
Пример #2
0
        public static IList <PostageModelInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(PostageModel.GetList(intTopCount, strCondition, strSort));
        }
Пример #3
0
 public static IList <PostageModelInfo> GetAllList()
 {
     return(PostageModel.GetList(0, string.Empty));
 }