示例#1
0
 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;
 }
示例#2
0
 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;
 }
示例#3
0
 public static void Add(string path, Form view, NavigatorViewMode mode = NavigatorViewMode.Persist)
 {
 }
示例#4
0
        // /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)
        {
        }