public AdminController(
            IOrchardServices orchardServices,
            IContentManager contentManager,
            IModuleGeneratorService moduleGeneratorService,
            IZipFileService zipFileService,
            ShellSettings shellSettings,
            ShellBlueprint shellBlueprint,
            IAppDataFolder appDataFolder)
        {
            _orchardServices = orchardServices;
            _contentManager = contentManager;
            _moduleGeneratorService = moduleGeneratorService;
            _zipFileService = zipFileService;
            _shellSettings = shellSettings;
            _shellBlueprint = shellBlueprint;
            _appDataFolder = appDataFolder;

            Logger = NullLogger.Instance;
            T = NullLocalizer.Instance;
        }
        public AdminController(
            IOrchardServices orchardServices,
            IContentManager contentManager,
            IModuleGeneratorService moduleGeneratorService,
            IZipFileService zipFileService,
            ShellSettings shellSettings,
            ShellBlueprint shellBlueprint,
            IAppDataFolder appDataFolder)
        {
            _orchardServices        = orchardServices;
            _contentManager         = contentManager;
            _moduleGeneratorService = moduleGeneratorService;
            _zipFileService         = zipFileService;
            _shellSettings          = shellSettings;
            _shellBlueprint         = shellBlueprint;
            _appDataFolder          = appDataFolder;

            Logger = NullLogger.Instance;
            T      = NullLocalizer.Instance;
        }