예제 #1
0
파일: CommDal.cs 프로젝트: jjg0519/OA
        public List <TEntity> GetListEntitiesWithPagingBySql <TEntity>(string strSql, int pageIndex, int pageSize)
            where TEntity : class
        {
            OracleDAO dao = new OracleDAO(conn);

            return(dao.GetListEntitiesWithPaging <TEntity>(strSql, pageIndex, pageSize));
        }