public AdvancedContentLoader(IContentLoader contentLoader, IPageSecurity pageSecurity)
 {
     _internalContentLoader = contentLoader;
     _pageSecurity          = pageSecurity;
 }
Пример #2
0
 public DecoratedContentLoader(IContentLoader c, IPageSecurity p)
 {
     this.c = c;
     this.p = p;
 }