File tree 2 files changed +26
-5
lines changed
2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// You can specify all the values or you can default the Revision and Build Numbers
17
17
// by using the '*' as shown below:
18
- [ assembly: AssemblyVersion ( "1.7.1 " ) ]
19
- [ assembly: AssemblyFileVersion ( "1.7.1 " ) ]
18
+ [ assembly: AssemblyVersion ( "1.7.2 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.7.2 " ) ]
20
20
//[assembly: AssemblyInformationalVersion("1.4.5-editlyalpha2")]
Original file line number Diff line number Diff line change @@ -37,7 +37,15 @@ public SortField[] GetSortFields(NameValueCollection items)
37
37
} )
38
38
. ToArray ( ) ;
39
39
}
40
-
40
+
41
+ public abstract IEnumerable GetAllNonGeneric ( SortField [ ] sortFields ) ;
42
+
43
+ public abstract IList GetPageNonGeneric ( int pageNumber , int pageSize , SortField [ ] sortFields ) ;
44
+
45
+ public abstract void PopulateSummaryValuesNonGeneric ( GriddlySettings settings ) ;
46
+
47
+ public abstract long GetCount ( ) ;
48
+
41
49
public abstract IEnumerable < P > GetAllForProperty < P > ( string propertyName ) ;
42
50
}
43
51
@@ -172,12 +180,25 @@ public override void ExecuteResult(ControllerContext context)
172
180
173
181
public abstract void PopulateSummaryValues ( GriddlySettings < T > settings ) ;
174
182
175
- public abstract long GetCount ( ) ;
176
-
177
183
public override IEnumerable < P > GetAllForProperty < P > ( string propertyName )
178
184
{
179
185
throw new NotImplementedException ( ) ;
180
186
}
187
+
188
+ public override IEnumerable GetAllNonGeneric ( SortField [ ] sortFields )
189
+ {
190
+ return GetAll ( sortFields ) ;
191
+ }
192
+
193
+ public override IList GetPageNonGeneric ( int pageNumber , int pageSize , SortField [ ] sortFields )
194
+ {
195
+ return ( IList ) ( GetPage ( pageNumber , pageSize , sortFields ) . ToList ( ) ) ;
196
+ }
197
+
198
+ public override void PopulateSummaryValuesNonGeneric ( GriddlySettings settings )
199
+ {
200
+ PopulateSummaryValues ( ( GriddlySettings < T > ) settings ) ;
201
+ }
181
202
}
182
203
183
204
public enum GriddlyExportFormat
You can’t perform that action at this time.
0 commit comments