コード例 #1
0
 public ImportDummyCategories(ImportExportManager importExportManager, IWebpageAdminService webpageAdminService, IGetDocumentByUrl <Category> getCategoryByUrl, ISynchronousBatchRunExecution synchronousBatchRunExecution)
 {
     _importExportManager          = importExportManager;
     _webpageAdminService          = webpageAdminService;
     _getCategoryByUrl             = getCategoryByUrl;
     _synchronousBatchRunExecution = synchronousBatchRunExecution;
 }
コード例 #2
0
 public SetupBaseDocuments(IWebpageAdminService webpageAdminService, IPageTemplateAdminService pageTemplateAdminService, IFormAdminService formAdminService, IGetDocumentByUrl <TextPage> getByUrl, ISession session)
 {
     _webpageAdminService      = webpageAdminService;
     _pageTemplateAdminService = pageTemplateAdminService;
     _formAdminService         = formAdminService;
     _getByUrl = getByUrl;
     _session  = session;
 }
コード例 #3
0
 public SetupEcommerceWidgets(IWidgetService widgetService, IGetDocumentByUrl <Webpage> getByUrl, IFormAdminService formAdminService, IFileService fileService, IWebpageAdminService webpageAdminService, ISession session)
 {
     _widgetService       = widgetService;
     _getByUrl            = getByUrl;
     _formAdminService    = formAdminService;
     _fileService         = fileService;
     _webpageAdminService = webpageAdminService;
     _session             = session;
 }
コード例 #4
0
 public ImportProductsService(IGetDocumentByUrl <MediaCategory> getByUrl,
                              IMediaCategoryAdminService mediaCategoryAdminService,
                              IImportProductSpecificationsService importSpecificationsService,
                              IImportProductVariantsService importProductVariantsService,
                              IImportProductImagesService importProductImagesService,
                              IImportProductUrlHistoryService importUrlHistoryService, ISession session,
                              IUniquePageService uniquePageService, ICreateBatch createBatch, IGetNewBrandPage getNewBrandPage)
 {
     _getByUrl = getByUrl;
     _mediaCategoryAdminService    = mediaCategoryAdminService;
     _importSpecificationsService  = importSpecificationsService;
     _importProductVariantsService = importProductVariantsService;
     _importProductImagesService   = importProductImagesService;
     _importUrlHistoryService      = importUrlHistoryService;
     _session           = session;
     _uniquePageService = uniquePageService;
     _createBatch       = createBatch;
     _getNewBrandPage   = getNewBrandPage;
 }
コード例 #5
0
 public DocumentUrlHistoryItemsAreValid(IGetDocumentByUrl <Webpage> getWebpageByUrl, IUrlHistoryImportService urlHistoryService)
 {
     _getWebpageByUrl   = getWebpageByUrl;
     _urlHistoryService = urlHistoryService;
 }
コード例 #6
0
 public GetWebpageForRequest(IGetDocumentByUrl <Webpage> getWebpageByUrl)
 {
     _getWebpageByUrl = getWebpageByUrl;
 }
コード例 #7
0
 public SaveFormFileUpload(IGetDocumentByUrl <MediaCategory> mediaCategoryLoader, IRepository <MediaCategory> mediaCategoryRepository, IFileService fileService)
 {
     _mediaCategoryLoader     = mediaCategoryLoader;
     _mediaCategoryRepository = mediaCategoryRepository;
     _fileService             = fileService;
 }
コード例 #8
0
 public ProductCategoriesExist(IGetDocumentByUrl <Category> documentService)
 {
     _documentService = documentService;
 }
コード例 #9
0
 public DocumentParentIsValid(IGetDocumentByUrl <Webpage> getWebpageByUrl)
 {
     _getWebpageByUrl = getWebpageByUrl;
 }
コード例 #10
0
 public SetupEcommerceMedia(IFileService fileService, IGetDocumentByUrl <MediaCategory> getByUrl)
 {
     _fileService = fileService;
     _getByUrl    = getByUrl;
 }
コード例 #11
0
 public ImportPictureData(IFileService fileService, IGetDocumentByUrl <MediaCategory> getByUrl, IMediaCategoryAdminService mediaCategoryAdminService)
 {
     _fileService = fileService;
     _getByUrl    = getByUrl;
     _mediaCategoryAdminService = mediaCategoryAdminService;
 }
コード例 #12
0
 public SetupEcommerceSettings(IConfigurationProvider configurationProvider, IGetDocumentByUrl <Layout> getByUrl)
 {
     _configurationProvider = configurationProvider;
     _getByUrl = getByUrl;
 }
コード例 #13
0
 public ArticleListRSSRouteHandler(IGetDocumentByUrl <ArticleList> getArticleListByUrl, IControllerManager controllerManager)
 {
     _getArticleListByUrl = getArticleListByUrl;
     _controllerManager   = controllerManager;
 }
コード例 #14
0
 public SetupProduct(ISession session, IGetDocumentByUrl <MediaCategory> mediaCategoryByUrl, IMediaCategoryAdminService mediaCategoryAdminService)
 {
     _session                   = session;
     _mediaCategoryByUrl        = mediaCategoryByUrl;
     _mediaCategoryAdminService = mediaCategoryAdminService;
 }