Example #1
0
 public ListResult(IEnumerable <T> items, SteppingInfo stepping)
 {
     this.items    = items.ToList();
     this.stepping = stepping;
 }
Example #2
0
 public ListResult(List <T> items, SteppingInfo stepping)
 {
     this.items    = items;
     this.stepping = stepping;
 }