Ejemplo n.º 1
0
 public MvcRoute(MvcRoute route)
 {
     Action         = route.Action;
     Controller     = route.Controller;
     Area           = route.Area;
     RecordId       = route.RecordId;
     ParentRecordId = route.ParentRecordId;
     IsPopup        = route.IsPopup;
     EntityName     = route.EntityName;
     Url            = route.Url;
     OwnerCbPanel   = route.OwnerCbPanel;
 }
Ejemplo n.º 2
0
 public MvcRoute(MvcRoute route, string action) : this(route)
 {
     Action = action;
 }
Ejemplo n.º 3
0
 public MvcRoute(MvcRoute route, string action, long recordId) : this(route)
 {
     RecordId = recordId;
     Action   = action;
 }
Ejemplo n.º 4
0
 public MvcRoute(MvcRoute route, long recordId) : this(route)
 {
     RecordId = recordId;
 }