Пример #1
0
        public EavDiModel(ISite site, IHttpContextAccessor httpC, IHttp http, IServerPaths serverPaths, ILinkPaths linkPaths)
        {
            // itenant should exist
            var x = site.Id;
            var y = httpC.HttpContext.Request.Body;

            Http        = http;
            ServerPaths = serverPaths;
            LinkPaths   = linkPaths;
        }
Пример #2
0
 public EngineBaseDependencies(IServerPaths serverPaths,
                               ILinkPaths linkPaths,
                               TemplateHelpers templateHelpers,
                               IClientDependencyOptimizer clientDependencyOptimizer,
                               Lazy <AppPermissionCheck> appPermCheckLazy)
 {
     ServerPaths               = serverPaths;
     LinkPaths                 = linkPaths;
     TemplateHelpers           = templateHelpers;
     ClientDependencyOptimizer = clientDependencyOptimizer;
     AppPermCheckLazy          = appPermCheckLazy;
 }
Пример #3
0
 public TemplateHelpers(IServerPaths serverPaths, ILinkPaths linkPaths, IGlobalConfiguration globalConfiguration) : base("Viw.Help")
 {
     ServerPaths          = serverPaths;
     _linkPaths           = linkPaths;
     _globalConfiguration = globalConfiguration;
 }
Пример #4
0
 public App(AppDependencies dependencies, ILinkPaths linkPaths) : base(dependencies, "App.SxcApp")
 {
     _linkPaths = linkPaths;
 }
Пример #5
0
 public OqtaneRazorEngine(IServerPaths serverPaths, ILinkPaths linkPaths, TemplateHelpers templateHelpers) : base(serverPaths, linkPaths, templateHelpers)
 {
 }
Пример #6
0
 public OqtUiContextBuilder(ILinkPaths linkPaths, IContextOfSite ctx, Dependencies deps) : base(deps)
 {
     _linkPaths = linkPaths;
     _context   = ctx;
 }
Пример #7
0
 public RenderingHelper(ILinkPaths linkPaths, IEnvironmentLogger errorLogger) : base("Sxc.RndHlp")
 {
     _linkPaths   = linkPaths;
     _errorLogger = errorLogger;
 }
Пример #8
0
 public MvcContextBuilder(ILinkPaths linkPaths, Dependencies deps) : base(deps)
 {
     _linkPaths = linkPaths;
 }