public PaymentModuleController(
     IPaymentMethodsSearchService paymentMethodsSearchService,
     IPaymentMethodsService paymentMethodsService
     )
 {
     _paymentMethodsSearchService = paymentMethodsSearchService;
     _paymentMethodsService       = paymentMethodsService;
 }
Example #2
0
 public StoreServiceImpl(Func <IStoreRepository> repositoryFactory, ICommerceService commerceService, ISettingsManager settingManager, IShippingService shippingService, IPaymentMethodsService paymentService)
 {
     _repositoryFactory = repositoryFactory;
     _commerceService   = commerceService;
     _settingManager    = settingManager;
     _shippingService   = shippingService;
     _paymentService    = paymentService;
 }
 public PackageController(IPackagesService packagesService,
                          UserManager <IdentityUser> userManager,
                          IPaymentMethodsService paymentMethodsService)
 {
     _packagesService       = packagesService;
     _userManager           = userManager;
     _paymentMethodsService = paymentMethodsService;
 }
		public StoreServiceImpl(Func<IStoreRepository> repositoryFactory, ICommerceService commerceService, ISettingsManager settingManager, IShippingService shippingService, IPaymentMethodsService paymentService)
		{
			_repositoryFactory = repositoryFactory;
			_commerceService = commerceService;
			_settingManager = settingManager;
			_shippingService = shippingService;
			_paymentService = paymentService;
		}
		public StoreModuleController(IStoreService storeService, IShippingService shippingService, IPaymentMethodsService paymentService, ITaxService taxService, 
                                     ISecurityService securityService, IPermissionScopeService permissionScopeService)
		{
			_storeService = storeService;
			_shippingService = shippingService;
			_paymentService = paymentService;
            _taxService = taxService;
            _securityService = securityService;
            _permissionScopeService = permissionScopeService;
        }
Example #6
0
 public StoreModuleController(IStoreService storeService, IShippingService shippingService, IPaymentMethodsService paymentService, ITaxService taxService,
                              ISecurityService securityService, IPermissionScopeService permissionScopeService)
 {
     _storeService           = storeService;
     _shippingService        = shippingService;
     _paymentService         = paymentService;
     _taxService             = taxService;
     _securityService        = securityService;
     _permissionScopeService = permissionScopeService;
 }
 public StoreModuleController(IStoreService storeService, IShippingMethodsService shippingService, IPaymentMethodsService paymentService, ITaxService taxService,
                              ISecurityService securityService, IPermissionScopeService permissionScopeService, INotificationManager notificationManager)
 {
     _storeService = storeService;
     _shippingService = shippingService;
     _paymentService = paymentService;
     _taxService = taxService;
     _securityService = securityService;
     _permissionScopeService = permissionScopeService;
     _notificationManager = notificationManager;
 }
		public StoreServiceImpl(Func<IStoreRepository> repositoryFactory, ICommerceService commerceService, ISettingsManager settingManager, 
							    IDynamicPropertyService dynamicPropertyService, IShippingService shippingService, IPaymentMethodsService paymentService, CacheManager cacheManager)
        {
            _repositoryFactory = repositoryFactory;
            _commerceService = commerceService;
            _settingManager = settingManager;
            _dynamicPropertyService = dynamicPropertyService;
            _shippingService = shippingService;
            _paymentService = paymentService;
			_cacheManager = cacheManager;
        }
 public PaymentMethodsSearchService(
     Func <IPaymentRepository> repositoryFactory,
     IPlatformMemoryCache memCache,
     IPaymentMethodsService paymentMethodsService,
     ISettingsManager settingsManager)
 {
     _repositoryFactory     = repositoryFactory;
     _memCache              = memCache;
     _paymentMethodsService = paymentMethodsService;
     _settingsManager       = settingsManager;
 }
Example #10
0
 public StoreModuleController(IStoreService storeService, IShippingMethodsService shippingService, IPaymentMethodsService paymentService, ITaxService taxService,
                              ISecurityService securityService, IPermissionScopeService permissionScopeService, INotificationManager notificationManager)
 {
     _storeService           = storeService;
     _shippingService        = shippingService;
     _paymentService         = paymentService;
     _taxService             = taxService;
     _securityService        = securityService;
     _permissionScopeService = permissionScopeService;
     _notificationManager    = notificationManager;
 }
Example #11
0
 public StoreServiceImpl(Func <IStoreRepository> repositoryFactory, ICommerceService commerceService, ISettingsManager settingManager,
                         IDynamicPropertyService dynamicPropertyService, IShippingService shippingService, IPaymentMethodsService paymentService, CacheManager cacheManager)
 {
     _repositoryFactory      = repositoryFactory;
     _commerceService        = commerceService;
     _settingManager         = settingManager;
     _dynamicPropertyService = dynamicPropertyService;
     _shippingService        = shippingService;
     _paymentService         = paymentService;
     _cacheManager           = cacheManager;
 }
Example #12
0
 public CustomerOrderServiceImpl(Func <IOrderRepository> orderRepositoryFactory, IUniqueNumberGenerator uniqueNumberGenerator, IEventPublisher <OrderChangeEvent> eventPublisher, IShoppingCartService shoppingCartService, IItemService productService,
                                 IDynamicPropertyService dynamicPropertyService, ISettingsManager settingManager, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService)
 {
     _repositoryFactory      = orderRepositoryFactory;
     _shoppingCartService    = shoppingCartService;
     _uniqueNumberGenerator  = uniqueNumberGenerator;
     _eventPublisher         = eventPublisher;
     _productService         = productService;
     _dynamicPropertyService = dynamicPropertyService;
     _settingManager         = settingManager;
     _shippingMethodsService = shippingMethodsService;
     _paymentMethodsService  = paymentMethodsService;
 }
 public CustomerOrderServiceImpl(Func <IOrderRepository> orderRepositoryFactory, IUniqueNumberGenerator uniqueNumberGenerator, IDynamicPropertyService dynamicPropertyService, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService,
                                 IStoreService storeService, IChangeLogService changeLogService, IEventPublisher eventPublisher, ICustomerOrderTotalsCalculator totalsCalculator)
 {
     RepositoryFactory      = orderRepositoryFactory;
     UniqueNumberGenerator  = uniqueNumberGenerator;
     EventPublisher         = eventPublisher;
     DynamicPropertyService = dynamicPropertyService;
     ShippingMethodsService = shippingMethodsService;
     PaymentMethodsService  = paymentMethodsService;
     StoreService           = storeService;
     ChangeLogService       = changeLogService;
     TotalsCalculator       = totalsCalculator;
 }
 public CustomerOrderServiceImpl(Func<IOrderRepository> orderRepositoryFactory, IUniqueNumberGenerator uniqueNumberGenerator, IEventPublisher<OrderChangeEvent> eventPublisher, IShoppingCartService shoppingCartService, IItemService productService, 
                               IDynamicPropertyService dynamicPropertyService, ISettingsManager settingManager, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService)
 {
     _repositoryFactory = orderRepositoryFactory;
     _shoppingCartService = shoppingCartService;
     _uniqueNumberGenerator = uniqueNumberGenerator;
     _eventPublisher = eventPublisher;
     _productService = productService;
     _dynamicPropertyService = dynamicPropertyService;
     _settingManager = settingManager;
     _shippingMethodsService = shippingMethodsService;
     _paymentMethodsService = paymentMethodsService;
 }
Example #15
0
 public CustomerOrderServiceImpl(Func <IOrderRepository> orderRepositoryFactory, IUniqueNumberGenerator uniqueNumberGenerator, IEventPublisher <OrderChangeEvent> orderChangingPublisher,
                                 IDynamicPropertyService dynamicPropertyService, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService,
                                 IStoreService storeService, IChangeLogService changeLogService, IEventPublisher <OrderChangedEvent> orderChangedPublisher)
 {
     RepositoryFactory      = orderRepositoryFactory;
     UniqueNumberGenerator  = uniqueNumberGenerator;
     OrderChangingPublisher = orderChangingPublisher;
     OrderChangedPublisher  = orderChangedPublisher;
     DynamicPropertyService = dynamicPropertyService;
     ShippingMethodsService = shippingMethodsService;
     PaymentMethodsService  = paymentMethodsService;
     StoreService           = storeService;
     ChangeLogService       = changeLogService;
 }
Example #16
0
 public PaymentMethodsSearchService(Func <IPaymentRepository> repositoryFactory, IPlatformMemoryCache platformMemoryCache,
                                    IPaymentMethodsService paymentMethodsService, ISettingsManager settingsManager)
     : base(repositoryFactory, platformMemoryCache, (ICrudService <PaymentMethod>)paymentMethodsService)
 {
     _settingsManager = settingsManager;
 }
 public CustomerOrderServiceExtImpl(Func <IOrderRepository> orderRepositoryFactory, IUniqueNumberGenerator uniqueNumberGenerator, IEventPublisher <OrderChangeEvent> eventPublisher,
                                    IDynamicPropertyService dynamicPropertyService, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService,
                                    IStoreService storeService, IChangeLogService changelogService, ICustomerOrderSearchService orderSearchService) : base(orderRepositoryFactory, uniqueNumberGenerator, eventPublisher, dynamicPropertyService, shippingMethodsService, paymentMethodsService, storeService, changelogService)
 {
     _orderSearchService = orderSearchService;
 }
Example #18
0
 public PolymorphicOperationJsonConverter(IPaymentMethodsService paymentMethodsService, IShippingMethodsService shippingMethodsService)
 {
     _paymentMethodsService  = paymentMethodsService;
     _shippingMethodsService = shippingMethodsService;
 }
		public StoreModuleController(IStoreService storeService, IShippingService shippingService, IPaymentMethodsService paymentService)
		{
			_storeService = storeService;
			_shippingService = shippingService;
			_paymentService = paymentService;
		}
 public StoreModuleController(IStoreService storeService, IShippingService shippingService, IPaymentMethodsService paymentService)
 {
     _storeService    = storeService;
     _shippingService = shippingService;
     _paymentService  = paymentService;
 }
 /// <summary>Initializes a new instance of the Ulacit.Mandiola.API.Controllers.ActivityController class.</summary>
 /// <param name="userEasyPayService">The activity service.</param>
 public PaymentMethodController(IPaymentMethodsService userEasyPayService)
 {
     _paymentMethodService = userEasyPayService;
 }
 public BookingsController(IBookingsService bookingsService, IWorkoutsService workoutsService, IPaymentMethodsService paymentMethodsService)
 {
     this.bookingsService       = bookingsService;
     this.workoutsService       = workoutsService;
     this.paymentMethodsService = paymentMethodsService;
 }
 public PolymorphicStoreJsonConverter(IPaymentMethodsService paymentMethodsService, IShippingMethodsService shippingMethodsService, ITaxService taxService)
 {
     _paymentMethodsService  = paymentMethodsService;
     _shippingMethodsService = shippingMethodsService;
     _taxService             = taxService;
 }
 public CustomerOrderSearchServiceImpl(Func <IOrderRepository> orderRepositoryFactory, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService)
 {
     _orderRepositoryFactory = orderRepositoryFactory;
     _shippingMethodsService = shippingMethodsService;
     _paymentMethodsService  = paymentMethodsService;
 }
 public PaymentMethodsController(IPaymentMethodsService paymentMethodsService, IMapper mapper)
 {
     _paymentMethodsService = paymentMethodsService;
     _mapper = mapper;
 }
 public PaymentModuleController(IPaymentMethodsSearchService paymentMethodsSearchService, IPaymentMethodsService paymentMethodsService)
 {
     _paymentMethodsSearchService = (ISearchService <PaymentMethodsSearchCriteria, PaymentMethodsSearchResult, PaymentMethod>)paymentMethodsSearchService;
     _paymentMethodsRegistrar     = (IPaymentMethodsRegistrar)paymentMethodsService;
     _paymentMethodCrudService    = (ICrudService <PaymentMethod>)paymentMethodsService;
 }
 public PaymentMethodsController(IPaymentMethodsService paymentMethodsService)
 {
     this.paymentMethodsService = paymentMethodsService;
 }
 public WorkoutsController(IWorkoutsService workoutsService, IWorkoutActivitiesService workoutActivitiesService, IPaymentMethodsService paymentMethodsService)
 {
     this.workoutsService          = workoutsService;
     this.workoutActivitiesService = workoutActivitiesService;
     this.paymentMethodsService    = paymentMethodsService;
 }
Example #29
0
 public PaymentExportImport(IPaymentMethodsService paymentMethodsService, IPaymentMethodsSearchService paymentMethodsSearchService, JsonSerializer jsonSerializer)
 {
     _paymentMethodsService       = paymentMethodsService;
     _jsonSerializer              = jsonSerializer;
     _paymentMethodsSearchService = paymentMethodsSearchService;
 }
 public CustomerOrderServiceExtImpl(Func <IOrderExtensionRepository> orderRepositoryFactoryEx, IUniqueNumberGenerator uniqueNumberGenerator, IEventPublisher <OrderChangeEvent> orderChangingPublisher, IDynamicPropertyService dynamicPropertyService, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService, IStoreService storeService, IChangeLogService changeLogService, IEventPublisher <OrderChangedEvent> orderChangedPublisher)
     : base(orderRepositoryFactoryEx, uniqueNumberGenerator, orderChangingPublisher, dynamicPropertyService, shippingMethodsService, paymentMethodsService, storeService, changeLogService, orderChangedPublisher)
 {
     _orderChangingPublisher   = orderChangingPublisher;
     _orderRepositoryFactoryEx = orderRepositoryFactoryEx;
 }
        public CustomerOrderSearchServiceImpl(Func<IOrderRepository> orderRepositoryFactory, IShippingMethodsService shippingMethodsService, IPaymentMethodsService paymentMethodsService)
		{
			_orderRepositoryFactory = orderRepositoryFactory;
            _shippingMethodsService = shippingMethodsService;
            _paymentMethodsService = paymentMethodsService;
        }
 public PaymentExportImport(IPaymentMethodsService paymentMethodsService, IPaymentMethodsSearchService paymentMethodsSearchService, JsonSerializer jsonSerializer)
 {
     _paymentMethodsSearchService = (SearchService <PaymentMethodsSearchCriteria, PaymentMethodsSearchResult, PaymentMethod, StorePaymentMethodEntity>)paymentMethodsSearchService;
     _paymentMethodsService       = (ICrudService <PaymentMethod>)paymentMethodsService;
     _jsonSerializer = jsonSerializer;
 }