예제 #1
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;
 }
예제 #2
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;
 }
예제 #3
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;
 }