Exemple #1
0
        public ProjectAdminController(IWorkContext workContext, ICameleoProjectCategoryService projectCategoryService, ILanguageService languageService,
                                      //ICameleoEventService eventService, ICameleoEventUserService eventUserService,ICameleoCustomerEventService customerEventService,
                                      IPermissionService permissionService, ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
                                      IDateTimeHelper dateTimeHelper, ICameleoWorkflowMessageService cameleoWorkflowMessageService, ICameleoProjectSubCategoryService projectSubCategoryService)
        {
            _workContext               = workContext;
            _projectCategoryService    = projectCategoryService;
            _projectSubCategoryService = projectSubCategoryService;

            /*_eventService = eventService;
             * _eventUserService = eventUserService;
             * _customerEventService = customerEventService; */
            _permissionService      = permissionService;
            _localizationService    = localizationService;
            _localizedEntityService = localizedEntityService;
            _dateTimeHelper         = dateTimeHelper;
            _languageService        = languageService;
        }
Exemple #2
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;
 }