public ReportController( IOrchardServices services, IProcessService processService, ISortService sortService, ISecureFileService secureFileService, ICfgService cfgService, ISlugService slugService, IAppDataFolder appDataFolder, IClock clock, IBatchCreateService batchCreateService, IBatchWriteService batchWriteService, IBatchRunService batchRunService, IBatchRedirectService batchRedirectService, IFileService fileService ) { _orchardServices = services; _processService = processService; _secureFileService = secureFileService; _sortService = sortService; _batchCreateService = batchCreateService; _batchWriteService = batchWriteService; _batchRunService = batchRunService; _batchRedirectService = batchRedirectService; T = NullLocalizer.Instance; Logger = NullLogger.Instance; }
public CfgController( IWorkContextAccessor workContextAccessor, ICfgService cfgService) : base(workContextAccessor) { _cfgService = cfgService; }
public CfgController( IOrchardServices services, ICfgService cfgService, ISlugService slugService ) { _orchardServices = services; _cfgService = cfgService; _slugService = slugService; T = NullLocalizer.Instance; Logger = NullLogger.Instance; }
public ExportController( IOrchardServices services, IProcessService processService, ISortService sortService, ICfgService cfgService, ISlugService slugService, IAppDataFolder appDataFolder, IClock clock ) { _appDataFolder = appDataFolder; _orchardServices = services; _processService = processService; _sortService = sortService; _slugService = slugService; T = NullLocalizer.Instance; Logger = NullLogger.Instance; }
public PivotTableController( IOrchardServices services, IProcessService processService, ISortService sortService, ISecureFileService secureFileService, ICfgService cfgService, ISlugService slugService, IAppDataFolder appDataFolder, IClock clock, IBatchCreateService batchCreateService, IBatchWriteService batchWriteService, IBatchRunService batchRunService, IBatchRedirectService batchRedirectService, IFileService fileService ) { _orchardServices = services; _processService = processService; _secureFileService = secureFileService; }
public CfgController( IOrchardServices services, IProcessService processService, ISortService sortService, ISecureFileService secureFileService, ICfgService cfgService, ISlugService slugService, ITemplateProcessor templateProcessor ) { _orchardServices = services; _processService = processService; _secureFileService = secureFileService; _cfgService = cfgService; _sortService = sortService; _slugService = slugService; _templateProcessor = templateProcessor; T = NullLocalizer.Instance; Logger = NullLogger.Instance; }