示例#1
0
 public IList<SysAccountData> GetSysAccountPaging(System.String whereCondition, System.Int32 pageSize, System.Int32 currentPage, System.String sortByColumns)
 {
     try
     {
         var domain = new SysAccountDomainObject(ConnectionString);
         return domain.GetSysAccountPaging(whereCondition, pageSize, currentPage, sortByColumns);
     }
     catch (Exception ex)
     {
         ErrorLog.Log("[GetSysAccountPaging]", ex.Message);
         return new List<SysAccountData>();
     }
 }