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_RES_INF_LOGWebBLL { private ITN_AM_RES_INF_LOGInterface dal = DataAccess.CreateTN_AM_RES_INF_LOGInstance(); public List 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); } } }