Ejemplo n.º 1
0
 public AccountController(
     IAuthenticationService authenticationService,
     IWechatLoginEventService wechatLoginEventService,
     IAccountUserService customerService,
     IAccountUserRegistrationService customerRegistrationService,
     IGenericAttributeService genericAttributeService,
     IWorkflowMessageService workflowMessageService,
     IAccountUserActivityService accountUserActivityService,
     IGovernmentService governmentService,
     IWebHelper webHelper,
     IWorkContext workContext, IEncryptionService encryptionService,
     AccountUserSettings customerSettings)
 {
     _authenticationService          = authenticationService;
     _wechatLoginEventService        = wechatLoginEventService;
     _accountService                 = customerService;
     _accountUserRegistrationService = customerRegistrationService;
     _genericAttributeService        = genericAttributeService;
     _workflowMessageService         = workflowMessageService;
     _accountUserActivityService     = accountUserActivityService;
     _governmentService              = governmentService;
     _encryptionService              = encryptionService;
     _webHelper           = webHelper;
     _workContext         = workContext;
     _accountUserSettings = customerSettings;
 }
        public GovernmentUnitController(
            IAccountUserService accountUserService,
            IGovernmentService governmentService,
            IAccountUserActivityService accountUserActivityService,
            IWebHelper webHelper,
            IWorkContext workContext)

        {
            _accountUserService         = accountUserService;
            _accountUserActivityService = accountUserActivityService;
            _governmentService          = governmentService;

            _webHelper   = webHelper;
            _workContext = workContext;
        }
Ejemplo n.º 3
0
        public StatisticsController(
            IPropertyService propertyService,
            IAccountUserService accountUserService,
            IGovernmentService governmentService,
            IAccountUserActivityService accountUserActivityService,
            IWebHelper webHelper,
            IWorkContext workContext)
        {
            _propertyService            = propertyService;
            _accountUserService         = accountUserService;
            _accountUserActivityService = accountUserActivityService;
            _governmentService          = governmentService;

            _webHelper   = webHelper;
            _workContext = workContext;
        }