Esempio n. 1
0
 internal static ToRoute MapToEnumerable <TParent>(this string memberName, EnumerableDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes = null)
 {
     return(() => new View <TParent>(memberName, route, childRoutes));
 }
Esempio n. 2
0
 internal EnumerableMap(string memberName, EnumerableDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes)
     : base(memberName, childRoutes)
 {
     _route = route;
 }