Exemplo n.º 1
0
 public WebsiteModulePages(WebsiteModule myModule)
 {
     this.WebsiteModule = myModule;
 }
Exemplo n.º 2
0
 public WebsiteModuleMetadata(WebsiteModule myModule, string title, string area, string controller, string action, Boolean renderAsDropDown = false)
 {
     this.WebsiteModule = myModule;
     this.Title = title;
     this.Action = action;
     this.Controller = controller;
     this.Area = area;
     this.RenderAsDropDown = renderAsDropDown;
 }