Ejemplo n.º 1
0
 public ClientsController(
     IUserService userService,
     IEmailNotificationService emailNotificationService,
     ICompanyService companyService,
     IPendingClientService pendingClientService,
     IMapper mapper)
 {
     _userService = userService;
     _emailNotificationService = emailNotificationService;
     _companyService = companyService;
     _pendingClientService = pendingClientService;
     _mapper = mapper;
 }
Ejemplo n.º 2
0
 public ClientsController(
     IUserService userService,
     IEmailNotificationService emailNotificationService,
     ICompanyService companyService,
     IPendingClientService pendingClientService,
     IMapper mapper)
 {
     _userService = userService;
     _emailNotificationService = emailNotificationService;
     _companyService           = companyService;
     _pendingClientService     = pendingClientService;
     _mapper = mapper;
 }
Ejemplo n.º 3
0
 public AccountController(
     IAuthenticationService authenticationService,
     IUserService userService,
     IEmailNotificationService emailNotificationService,
     IPortalFrontendSettings settings,
     ITokenDataExtractorFactory tokenDataExtractorFactory,
     ISocialNetworkNotificationFactory notificationFactory,
     IProductIdExtractor productIdExtractor,
     IPendingClientService pendingClientService,
     IPasswordService passwordService,
     ICompanyService companyService)
     : base(settings)
 {
     _emailNotificationService  = emailNotificationService;
     _tokenDataExtractorFactory = tokenDataExtractorFactory;
     _notificationFactory       = notificationFactory;
     _productIdExtractor        = productIdExtractor;
     _pendingClientService      = pendingClientService;
     _passwordService           = passwordService;
     _companyService            = companyService;
     _authenticationService     = authenticationService;
     _userService = userService;
 }
Ejemplo n.º 4
0
 public AccountController(
     IAuthenticationService authenticationService,
     IUserService userService,
     IEmailNotificationService emailNotificationService,
     IPortalFrontendSettings settings,
     ITokenDataExtractorFactory tokenDataExtractorFactory,
     ISocialNetworkNotificationFactory notificationFactory,
     IProductIdExtractor productIdExtractor,
     IPendingClientService pendingClientService,
     IPasswordService passwordService,
     ICompanyService companyService)
     : base(settings)
 {
     _emailNotificationService = emailNotificationService;
     _tokenDataExtractorFactory = tokenDataExtractorFactory;
     _notificationFactory = notificationFactory;
     _productIdExtractor = productIdExtractor;
     _pendingClientService = pendingClientService;
     _passwordService = passwordService;
     _companyService = companyService;
     _authenticationService = authenticationService;
     _userService = userService;
 }