Exemplo n.º 1
0
 private InstanceSorterFactory(object instance, IBoxedSorter adaptedInstance)
 {
     _instance        = instance;
     _adaptedInstance = adaptedInstance;
 }
Exemplo n.º 2
0
 private FunctionSorterFactory(Func <object, IQueryable, IOrderedQueryable> sortFunc)
 {
     _sorter = new FunctionSorter(sortFunc);
 }