Beispiel #1
0
 public ProfileController(
     ILogger <ProfileController> logger,
     IWaterService waterService,
     IHidroProfileService profileService
     )
 {
     _logger         = logger;
     _waterService   = waterService;
     _profileService = profileService;
 }
 public AccountController(
     ILogger <AccountController> logger,
     IAccountService accountService,
     IAuthenticationService authService,
     IHidrogenianService userService,
     IHidroProfileService profileService,
     IEmailSenderService emailService,
     IGoogleReCaptchaService reCaptchaService
     )
 {
     _logger           = logger;
     _accountService   = accountService;
     _authService      = authService;
     _userService      = userService;
     _profileService   = profileService;
     _emailService     = emailService;
     _reCaptchaService = reCaptchaService;
 }
Beispiel #3
0
 public AuthenticationController(
     ILogger <AuthenticationController> logger,
     IRuntimeLogService runtimeLog,
     IAuthenticationService authService,
     IHidrogenianService userService,
     IHidroProfileService profileService,
     IRoleClaimerService roleClaimer,
     IEmailSenderService emailService,
     IGoogleReCaptchaService googleReCaptchaService
     )
 {
     _logger                 = logger;
     _runtimeLog             = runtimeLog;
     _authService            = authService;
     _userService            = userService;
     _profileService         = profileService;
     _roleClaimer            = roleClaimer;
     _emailService           = emailService;
     _googleReCaptchaService = googleReCaptchaService;
 }