public ConsumerAppController(IConsumerAppRepository consumerAppRepository, ILogger <ConsumerAppController> logger)
 {
     _consumerAppRepository = consumerAppRepository;
     _logger = logger;
 }
Exemple #2
0
 public ConsumerAppController(IConsumerAppRepository consumerAppRepository)
 {
     _consumerAppRepository = consumerAppRepository;
 }
Exemple #3
0
 public ConsumerAppRepositoryTest() : base()
 {
     _consumerAppRespository = serviceProvider.GetService <IConsumerAppRepository>();
     _clientContext          = serviceProvider.GetService <IDataRepository <IdentityServer4.EntityFramework.Entities.Client, ConfigurationDbContext> >();
     _stringConstant         = serviceProvider.GetService <IStringConstant>();
 }