Example #1
0
 public UmbracoStoreRepository(ICMSApplication cmsApplication, ICMSEntityRepository cmsEntityRepository, IStoreAliassesService aliasses)
 {
     _cmsApplication      = cmsApplication;
     _cmsEntityRepository = cmsEntityRepository;
     _aliasses            = aliasses;
     _storeRepo           = new UmbracoStoreRepo();
 }
Example #2
0
 public OrderUpdatingService(ICMSApplication cmsApplication, IProductService productService, IProductVariantService productVariantService,
                             ICouponCodeService couponCodeService, IOrderService orderService, IOrderNumberService orderNumberService, IOrderRepository orderRepository)
 {
     _cmsApplication        = cmsApplication;
     _productService        = productService;
     _productVariantService = productVariantService;
     _couponCodeService     = couponCodeService;
     _orderService          = orderService;
     _orderNumberService    = orderNumberService;
     _orderRepository       = orderRepository;
 }
 public UrlRewritingService(ICatalogUrlResolvingService catalogUrlResolvingService, ICMSApplication cmsApplication, IPaymentProviderService paymentProviderService, IHttpContextWrapper httpContextWrapper, IUwebshopConfiguration configuration, IStoreFromUrlDeterminationService storeFromUrlDeterminationService, IStoreService storeService, IApplicationCacheService applicationCacheService)
 {
     _catalogUrlResolvingService = catalogUrlResolvingService;
     _cmsApplication             = cmsApplication;
     _paymentProviderService     = paymentProviderService;
     _httpContextWrapper         = httpContextWrapper;
     _configuration = configuration;
     _storeFromUrlDeterminationService = storeFromUrlDeterminationService;
     _storeService            = storeService;
     _applicationCacheService = applicationCacheService;
 }
		public UrlRewritingService(ICatalogUrlResolvingService catalogUrlResolvingService, ICMSApplication cmsApplication, IPaymentProviderService paymentProviderService, IHttpContextWrapper httpContextWrapper, IUwebshopConfiguration configuration, IStoreFromUrlDeterminationService storeFromUrlDeterminationService, IStoreService storeService, IApplicationCacheService applicationCacheService)
		{
			_catalogUrlResolvingService = catalogUrlResolvingService;
			_cmsApplication = cmsApplication;
			_paymentProviderService = paymentProviderService;
			_httpContextWrapper = httpContextWrapper;
			_configuration = configuration;
			_storeFromUrlDeterminationService = storeFromUrlDeterminationService;
			_storeService = storeService;
			_applicationCacheService = applicationCacheService;
		}
		public OrderUpdatingService(ICMSApplication cmsApplication, IProductService productService, IProductVariantService productVariantService, 
			ICouponCodeService couponCodeService, IOrderService orderService, IOrderNumberService orderNumberService, IOrderRepository orderRepository)
		{
			_cmsApplication = cmsApplication;
			_productService = productService;
			_productVariantService = productVariantService;
			_couponCodeService = couponCodeService;
			_orderService = orderService;
			_orderNumberService = orderNumberService;
			_orderRepository = orderRepository;
		}
		public UmbracoStoreService(IStoreRepository storeRepository, ICMSApplication cmsApplication, ICMSEntityRepository cmsEntityRepository)
		{
			_storeRepository = storeRepository;
			_cmsApplication = cmsApplication;
			_cmsEntityRepository = cmsEntityRepository;
		}
		public OrderNumberService(ICMSApplication cmsApplication, IOrderRepository orderRepository)
		{
			_cmsApplication = cmsApplication;
			_orderRepository = orderRepository;
		}
		public UrlFormatService(ISettingsService settings, ICMSApplication cmsApplication)
		{
			_settings = settings; // todo: this is wrong in the current setup if resolved before settings is replaced by actual
			_cmsApplication = cmsApplication;
		}
Example #9
0
 public UmbracoStoreService(IStoreRepository storeRepository, ICMSApplication cmsApplication, ICMSEntityRepository cmsEntityRepository)
 {
     _storeRepository     = storeRepository;
     _cmsApplication      = cmsApplication;
     _cmsEntityRepository = cmsEntityRepository;
 }
 public UmbracoStorePickerStoreUrlRepository(ICMSEntityRepository cmsEntityRepository, ICMSApplication cmsApplication)
 {
     _cmsEntityRepository = cmsEntityRepository;
     _cmsApplication      = cmsApplication;
 }
Example #11
0
 public UrlFormatService(ISettingsService settings, ICMSApplication cmsApplication)
 {
     _settings       = settings;       // todo: this is wrong in the current setup if resolved before settings is replaced by actual
     _cmsApplication = cmsApplication;
 }
Example #12
0
 public OrderNumberService(ICMSApplication cmsApplication, IOrderRepository orderRepository)
 {
     _cmsApplication  = cmsApplication;
     _orderRepository = orderRepository;
 }