1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
| using HH.AMS.Ex.Factroy;
| using HH.AMS.Ex.Interface;
| using HH.AMS.Ex.Model;
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace HH.AMS.Ex.BLL
| {
| public class TN_AM_REQ_INF_LOGWebBLL
| {
| private TN_AM_REQ_INF_LOGInterface dal = DataAccess.CreateTN_AM_REQ_INF_LOGInstance();
|
|
| public List<TN_AM_REQ_INF_LOG> GetList(int pageIndex, int pageSize, string strWhere, string orderBy, out long total, out long totalPage)
| {
| return dal.GetList(pageIndex, pageSize, strWhere, orderBy, out total, out totalPage);
| }
| }
| }
|
|