public GTMCartExtensionProvider(
     IShoppingCart shoppingCart,
     IShapeFactory shapeFactory,
     IGTMProductService GTMProductService)
 {
     _shoppingCart      = shoppingCart;
     _shapeFactory      = shapeFactory;
     _GTMProductService = GTMProductService;
 }
Exemple #2
0
 public CheckoutStepsFilter(
     IEnumerable <IPosService> posServices,
     IShapeFactory shapeFactory,
     IWorkContextAccessor workContextAccessor,
     IGTMProductService GTMProductService)
 {
     _posServices         = posServices;
     _shapeFactory        = shapeFactory;
     _workContextAccessor = workContextAccessor;
     _GTMProductService   = GTMProductService;
 }
Exemple #3
0
 public GTMProductDriver(
     IOrchardServices orchardServices,
     ITokenizer tokenizer,
     IContentManager contentManager,
     IGTMProductService GTMProductService)
 {
     _orchardServices = orchardServices;
     Logger           = NullLogger.Instance;
     T                  = NullLocalizer.Instance;
     _tokenizer         = tokenizer;
     _contentManager    = contentManager;
     _GTMProductService = GTMProductService;
 }
Exemple #4
0
 public InfoResultPaymentFilter(
     IContentManager contentManager,
     IGTMProductService GTMProductService,
     IShapeFactory shapeFactory,
     IWorkContextAccessor workContextAccessor,
     IRepository <AddedMeasuringPurchase> addedMeauringPurchaseRepository,
     IGTMMeasuringPurchaseService GTMMeasuringPurchaseService)
 {
     _contentManager                  = contentManager;
     _GTMProductService               = GTMProductService;
     _shapeFactory                    = shapeFactory;
     _workContextAccessor             = workContextAccessor;
     _addedMeauringPurchaseRepository = addedMeauringPurchaseRepository;
     _GTMMeasuringPurchaseService     = GTMMeasuringPurchaseService;
 }