public SearchResultList(int Id, string Category, string CategoryIdentifier, string PublicName, bool CanDoActions, int Colour, int RequiredRank, NavigatorViewMode ViewMode, string CategoryType, string SearchAllowance, int OrderId) { this._id = Id; this._category = Category; this._categoryName = CategoryIdentifier; this._customName = PublicName; this._canDoActions = CanDoActions; this._colour = Colour; this._requiredRank = RequiredRank; this._viewMode = ViewMode; this._categoryType = NavigatorCategoryTypeUtility.GetCategoryTypeByString(CategoryType); this._searchAllowance = NavigatorSearchAllowanceUtility.GetSearchAllowanceByString(SearchAllowance); this._orderId = OrderId; }
public static void Add(string path, Form view, NavigatorViewMode mode = NavigatorViewMode.Persist) { }
// /users?name=luca&age=12 // /user // /user/{name} =? /user/luca?view=detailed // /user/* // /user/{name*} // /user/{name?} public static void Add(string path, Type viewType, NavigatorViewMode mode = NavigatorViewMode.Dispose) { }