Exemplo n.º 1
0
 public IList<DanhMucData> GetDanhMucPaging(System.String whereCondition, System.Int32 pageSize, System.Int32 currentPage, System.String sortByColumns)
 {
     try
     {
         var domain = new DanhMucDomainObject(ConnectionString);
         return domain.GetDanhMucPaging(whereCondition, pageSize, currentPage, sortByColumns);
     }
     catch (Exception ex)
     {
         ErrorLog.WebLog("[GetDanhMucPaging]", ex.Message);
         return new List<DanhMucData>();
     }
 }