Ejemplo n.º 1
0
 public ContentController(IContentManagerService cms, IMetasManagerService mms, IFilesManagerService fms, IHostingEnvironment hostingEnvironment)
 {
     this.cms = cms;
     this.mms = mms;
     this.fms = fms;
     this.hostingEnvironment = hostingEnvironment;
 }
Ejemplo n.º 2
0
 public DefaultController(IContentManagerService cms, IOptionsCache optionsCache, IMetasManagerService mms, ICache cache)
 {
     this.cms          = cms;
     this.optionsCache = optionsCache;
     this.mms          = mms;
     this.cache        = cache;
 }
Ejemplo n.º 3
0
 public MetasController(IMetasManagerService mms)
 {
     this.mms = mms;
 }