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