SouthWind.Product.GetPaged C# (CSharp) Method

GetPaged() public static method

public static GetPaged ( int pageIndex, int pageSize ) : PagedList
pageIndex int
pageSize int
return PagedList
        public static PagedList<Product> GetPaged(int pageIndex, int pageSize) {
            return GetRepo().GetPaged(pageIndex, pageSize);
            
        }

Same methods

Product::GetPaged ( int pageIndex, int pageSize, string connectionString, string providerName ) : PagedList
Product::GetPaged ( string sortBy, int pageIndex, int pageSize ) : PagedList
Product::GetPaged ( string sortBy, int pageIndex, int pageSize, string connectionString, string providerName ) : PagedList