コード例 #1
0
ファイル: CacheKeys.cs プロジェクト: EdutechSRL/Adevico
 public static String RenderPortal(MenuBarType type)
 {
     return("MenuPortal_" + type.ToString());
 }
コード例 #2
0
ファイル: CacheKeys.cs プロジェクト: EdutechSRL/Adevico
 public static String MenuBar(MenuBarType type)
 {
     return("Menubar_" + type.ToString());
 }
コード例 #3
0
ファイル: rootObject.cs プロジェクト: EdutechSRL/Adevico
 public static String ViewMenuBar(long IdMenubar, MenuBarType type)
 {
     return("Modules/Menu/View.aspx?Id=" + IdMenubar.ToString() + "&View=" + type.ToString());
 }
コード例 #4
0
ファイル: rootObject.cs プロジェクト: EdutechSRL/Adevico
 public static String CreateMenuBar(MenuBarType type)
 {
     return("Modules/Menu/Add.aspx?type=" + type.ToString());
 }
コード例 #5
0
ファイル: rootObject.cs プロジェクト: EdutechSRL/Adevico
 public static String MenuBarList(MenuBarType type)
 {
     return("Modules/Menu/List.aspx?View=" + type.ToString());
 }