Esempio n. 1
0
 public EventUserAdminController(IWorkContext workContext, ICameleoEventUserService eventUserService, IPermissionService permissionService, ICameleoEventService eventService,
                                 ILocalizationService localizationService)
 {
     _workContext         = workContext;
     _eventUserService    = eventUserService;
     _permissionService   = permissionService;
     _eventService        = eventService;
     _localizationService = localizationService;
 }
Esempio n. 2
0
 public ProjectController(IWorkContext workContext, ICameleoCustomerEventService customerEventService, ILogger logger,
                          ICameleoEventService eventService, ICameleoEventUserService eventUserService, IPermissionService permissionService,
                          ILocalizationService localizationService, IStoreContext storeContext)
 {
     _workContext          = workContext;
     _customerEventService = customerEventService;
     _eventService         = eventService;
     _eventUserService     = eventUserService;
     _permissionService    = permissionService;
     _localizationService  = localizationService;
     _storeContext         = storeContext;
     _logger = logger;
 }
Esempio n. 3
0
 public CustomerEventAdminController(IWorkContext workContext, ICameleoCustomerEventService customerEventService, ICameleoEventService eventService,
                                     ICameleoEventUserService eventUserService, IPermissionService permissionService, ILocalizationService localizationService,
                                     ICustomerService customerService, IShoppingCartService shoppingCartService, IProductService productService, IStoreContext storeContext,
                                     ILogger logger, IGenericAttributeService genericAttributeService)
 {
     _workContext          = workContext;
     _customerEventService = customerEventService;
     _eventService         = eventService;
     _eventUserService     = eventUserService;
     _permissionService    = permissionService;
     _localizationService  = localizationService;
     _customerService      = customerService;
     _shoppingCartService  = shoppingCartService;
     _productService       = productService;
     _storeContext         = storeContext;
     _logger = logger;
     _genericAttributeService = genericAttributeService;
 }
Esempio n. 4
0
 /// <summary>
 /// Ctor
 /// </summary>
 public CameleoCustomerEventService(IEventPublisher eventPublisher, IRepository <CameleoCustomerEvent> customerEventRepository, IRepository <CameleoEvent> eventRepository,
                                    IRepository <CameleoEventUser> eventUserRepository, IOrderService orderService, IRepository <GenericAttribute> genericAttributeRepository,
                                    IGenericAttributeService genericAttributeService, ICameleoEventUserService eventUserService, IWorkContext workContext, ILocalizationService localizationService,
                                    ICameleoEventService eventService, ICustomerService customerService)
 {
     _eventPublisher             = eventPublisher;
     _customerEventRepository    = customerEventRepository;
     _eventRepository            = eventRepository;
     _eventUserRepository        = eventUserRepository;
     _orderService               = orderService;
     _genericAttributeRepository = genericAttributeRepository;
     _genericAttributeService    = genericAttributeService;
     _eventUserService           = eventUserService;
     _workContext         = workContext;
     _localizationService = localizationService;
     _eventService        = eventService;
     _customerService     = customerService;
 }
Esempio n. 5
0
 public EventController(IWorkContext workContext, ICameleoEventService eventService, ICameleoEventUserService eventUserService,
                        CaptchaSettings captchaSettings, CustomerSettings customerSettings, ILocalizationService localizationService,
                        IEmailAccountService emailAccountService, EmailAccountSettings emailAccountSettings, IStoreContext storeContext,
                        IQueuedEmailService queuedEmailService, ICustomerActivityService customerActivityService, CommonSettings commonSettings,
                        ICameleoCustomerEventService customerEventService, ICameleoWorkflowMessageService cameleoWorkflowMessageService,
                        IGenericAttributeService genericAttributeService)
 {
     _workContext                   = workContext;
     _eventService                  = eventService;
     _eventUserService              = eventUserService;
     _customerEventService          = customerEventService;
     _captchaSettings               = captchaSettings;
     _customerSettings              = customerSettings;
     _localizationService           = localizationService;
     _emailAccountService           = emailAccountService;
     _emailAccountSettings          = emailAccountSettings;
     _storeContext                  = storeContext;
     _queuedEmailService            = queuedEmailService;
     _customerActivityService       = customerActivityService;
     _commonSettings                = commonSettings;
     _cameleoWorkflowMessageService = cameleoWorkflowMessageService;
     _genericAttributeService       = genericAttributeService;
 }