public StartupService( ILogger <StartupService> logger, IServiceScopeFactory serviceScopeFactory, TestConfiguration testConfiguration, UserPartitionRepository userPartitionRepository, UserInstitutionPartitionRepository userInstitutionPartitionRepository, FinancialAccountPartitionRepository financialAccountPartitionRepository) { _logger = logger; _serviceScopeFactory = serviceScopeFactory; _testConfiguration = testConfiguration; _userPartitionRepository = userPartitionRepository; _userInstitutionPartitionRepository = userInstitutionPartitionRepository; _financialAccountPartitionRepository = financialAccountPartitionRepository; }
public UserController(UserPartitionRepository userPartitionRepository) { _userPartitionRepository = userPartitionRepository; }