Esempio n. 1
0
        public DAppRepositoryTests()
        {
            _mongoDbRunner = MongoDbRunner.Start();
            var settings = new MarketplaceDatabaseSettings
            {
                ConnectionString        = _mongoDbRunner.ConnectionString,
                DatabaseName            = "IntegrationTests",
                DAppOfferCollectionName = "TestCollection"
            };

            _dAppRepository = new DAppRepository(settings);
        }
Esempio n. 2
0
 public DAppService(IDAppRepository dAppRepository, IJwtIdClaimReaderHelper jwtIdClaimReaderHelper)
 {
     _dAppRepository         = dAppRepository;
     _jwtIdClaimReaderHelper = jwtIdClaimReaderHelper;
 }
Esempio n. 3
0
 public DeleteUserMessageHandler(IDAppRepository dAppRepository, IDelegateRepository delegateRepository)
 {
     _dAppRepository     = dAppRepository;
     _delegateRepository = delegateRepository;
 }