public TestingPersonnelConfirmationsWithoutInvitationService(ITestingPersonnelConfirmationsWithoutInvitationRepository repository, ITestingPersonnelsRepository testingPersonnelsRepository, ITestingPersonnelInvitationsRepository testingPersonnelInvitationsRepository) { _repository = repository; _testingPersonnelsRepository = testingPersonnelsRepository; _testingPersonnelInvitationsRepository = testingPersonnelInvitationsRepository; }
public TestingPersonnelInvitationsService(ITestingPersonnelInvitationsRepository testingPersonnelInvitationsRepository, ITestingPersonnelsRepository testingPersonnelsRepository, ITestingPersonnelInvitationConfirmationTokensRepository invitationConfirmationTokensRepository, ITestingPersonnelConfirmationsRepository testingPersonnelConfirmationsRepository, IEmailSenderService mailSender) : base(testingPersonnelInvitationsRepository) { _testingPersonnelInvitationsRepository = testingPersonnelInvitationsRepository; _testingPersonnelsRepository = testingPersonnelsRepository; _invitationConfirmationTokensRepository = invitationConfirmationTokensRepository; _testingPersonnelConfirmationsRepository = testingPersonnelConfirmationsRepository; _mailSender = mailSender; }