Example #1
0
 public ResendConfirmationEmailServerAction(IServiceProvider serviceProvider, ProfileRepository profileRepository, IInputValidationService inputValidationService, TextService textService, EmailConfirmationSenderService emailConfirmationSenderService, UniwikiContext uniwikiContext) : base(serviceProvider)
 {
     _profileRepository              = profileRepository;
     _inputValidationService         = inputValidationService;
     _textService                    = textService;
     _emailConfirmationSenderService = emailConfirmationSenderService;
     _uniwikiContext                 = uniwikiContext;
 }
 public RegisterServerAction(IServiceProvider serviceProvider, ProfileRepository profileRepository, ITimeService timeService, TextService textService, StringStandardizationService stringStandardizationService, IHashService hashService, EmailConfirmationSenderService emailConfirmationSenderService, StudyGroupRepository studyGroupRepository, RecentCoursesService recentCoursesService, UniwikiContext uniwikiContext)
     : base(serviceProvider)
 {
     _profileRepository              = profileRepository;
     _timeService                    = timeService;
     _textService                    = textService;
     _stringStandardizationService   = stringStandardizationService;
     _hashService                    = hashService;
     _emailConfirmationSenderService = emailConfirmationSenderService;
     _studyGroupRepository           = studyGroupRepository;
     _recentCoursesService           = recentCoursesService;
     _uniwikiContext                 = uniwikiContext;
 }