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; }
public MvcRoute(MvcRoute route, string action) : this(route) { Action = action; }
public MvcRoute(MvcRoute route, string action, long recordId) : this(route) { RecordId = recordId; Action = action; }
public MvcRoute(MvcRoute route, long recordId) : this(route) { RecordId = recordId; }