public PasswordController(
     IAuthService authService,
     IResources resources,
     IAuthEmailService authEmailService,
     UserManager <User> userManager
     )
 {
     _authService       = authService;
     _resources         = resources;
     _authEmailServices = authEmailService;
     _userManager       = userManager;
 }
示例#2
0
 public AuthController(
     IAuthService authService,
     IUserDatesService userDatesService,
     IHomeService homeService,
     IResources resources,
     IAuthEmailService authEmailServices)
 {
     _authService       = authService;
     _userDatesService  = userDatesService;
     _homeService       = homeService;
     _resources         = resources;
     _authEmailServices = authEmailServices;
 }
 public EmailReminderService(IRepositoryWrapper repoWrapper,
                             IAuthEmailService authEmailServices,
                             IEmailContentService emailContentService,
                             IEmailSendingService emailSendingService,
                             IMapper mapper,
                             UserManager <User> userManager)
 {
     _repoWrapper         = repoWrapper;
     _authEmailServices   = authEmailServices;
     _emailContentService = emailContentService;
     _emailSendingService = emailSendingService;
     _mapper      = mapper;
     _userManager = userManager;
 }