Example #1
0
 public int page { get; set; }       // used to keep track of what page the list has loaded up to
 
 public ProductList()
 {
     results = new ObservableCollection<Listing>();
     @params = new Page_Parameters();
     pagination = new Pagination();
     page = 1;
 }
Example #2
0
 public ProductList(string Type)
 {
     listType = Type;
     page = 1;
     results = new ObservableCollection<Listing>();
     @params = new Page_Parameters();
     pagination = new Pagination();
 }