Beispiel #1
0
 internal static ToRoute MapToValue <TParent>(this string memberName, ValueDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes = null)
 {
     return(() => new View <TParent>(memberName, route, childRoutes));
 }
Beispiel #2
0
 internal ValueMap(string memberName, ValueDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes)
     : base(memberName, childRoutes)
 {
     _route = route;
 }