Ejemplo n.º 1
0
 public ViewPage()
 {
     _templateService        = new SysTemplateService();
     _templateDetailsService = new SysTemplateDetailsService();
     _currentLang            = StartUp.CurrentLang;
     _pageService            = new SysPageService();
 }
Ejemplo n.º 2
0
        public CPApiController(ILogs logs
                               , IConfiguration configuration
                               , SysTemplateDetailService templateDetailService
                               , SysTemplateService templateService
                               , SysTemplatePropertyService templatePropertyService
                               , CPMenuService menuService
                               , CPUserService userService
                               , CPRoleService roleService
                               , CPLangService langService
                               , Security security)
        {
            _configuration          = configuration;
            _logs                   = logs;
            _menu                   = new WebMenu();
            _security               = security;
            _templateDetailsService = templateDetailService;
            _templateService        = templateService;
            _menuService            = menuService;
            _propertyService        = templatePropertyService;
            _userService            = userService;
            _roleService            = roleService;
            _langService            = langService;

            _currentLang = StartUp.CurrentLang;
        }
 public SysTemplateController(ILogs logs, IHostingEnvironment environment)
 {
     _sysTemplate        = new SysTemplateService();
     _sysTemplateDetails = new SysTemplateDetailsService();
     _logs        = logs;
     _environment = environment;
 }
Ejemplo n.º 4
0
 public SysTemplateController(ILogs logs, IHostingEnvironment environment, SysTemplateService templateService
                              , SysTemplateDetailService templateDetailService)
 {
     _sysTemplate        = templateService;
     _sysTemplateDetails = templateDetailService;
     _logs        = logs;
     _environment = environment;
 }
Ejemplo n.º 5
0
 public ViewPage(SysTemplateService templateService, SysTemplateDetailService templateDetailService
                 , SysPageService pageService, SysTemplatePropertyService sysTemplateProperty)
 {
     _templateService        = templateService;
     _templateDetailsService = templateDetailService;
     _currentLang            = StartUp.CurrentLang;
     _pageService            = pageService;
     _sysTemplateProperty    = sysTemplateProperty;
 }
Ejemplo n.º 6
0
 public CPApiController(ILogs logs, IConfiguration configuration)
 {
     _configuration          = configuration;
     _logs                   = logs;
     _menu                   = new WebMenu();
     _templateDetailsService = new SysTemplateDetailsService();
     _templateService        = new SysTemplateService();
     _menuService            = new CPMenuService();
     _propertyService        = new SysPropertyService();
     currentLang             = StartUp.CurrentLang;
 }
 public CPTemplateController(ILogs logs, IHostingEnvironment environment, SysTemplateService templateService)
 {
     _service     = templateService;
     _logs        = logs;
     _environment = environment;
 }
Ejemplo n.º 8
0
 public CPTemplateController(ILogs logs, IHostingEnvironment environment)
 {
     _service     = new SysTemplateService();
     _logs        = logs;
     _environment = environment;
 }