コード例 #1
0
 internal static ToRoute MapToList <TParent>(this string memberName, ListDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes = null)
 {
     return(() => new View <TParent>(memberName, route, childRoutes));
 }
コード例 #2
0
 internal ListMap(string memberName, ListDelegateWithView <TParent> route, IEnumerable <ToRoute> childRoutes)
     : base(memberName, childRoutes)
 {
     _route = route;
 }