Exemplo n.º 1
0
        public List <TraModOrderListDataModel> GetTraModOrderByPageList(TraModOrderListQueryModel queryModel, ref int totalCount)
        {
            TraModOrderListQueryEntity       query = Mapper.Map <TraModOrderListQueryModel, TraModOrderListQueryEntity>(queryModel);
            List <TraModOrderListDataEntity> list  = _dal.GetTraModOrderByPageList(query, ref totalCount);

            if (list == null)
            {
                return(null);
            }
            return(Mapper.Map <List <TraModOrderListDataEntity>, List <TraModOrderListDataModel> >(list));
        }
Exemplo n.º 2
0
 public List <TraOrderListDataModel> GetTraModOrderByPageList(TraModOrderListQueryModel query, ref int totalCount)
 {
     throw new NotImplementedException();
 }