Example #1
0
 public TokenController(
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IEventService events,
     ApplicationDbContext users,
     IConfiguration configuration,
     IMSGConfigHelper iMSGConfigHelper,
     ILogger <TokenController> logger)
 {
     // if the TestUserStore is not in DI, then we'll just use the global users collection
     // this is where you would plug in your own custom identity management library (e.g. ASP.NET Identity)
     _users            = users;// ??
     _iMSGConfigHelper = iMSGConfigHelper;
     _interaction      = interaction;
     _clientStore      = clientStore;
     _events           = events;
     _configuration    = configuration;
     _logger           = logger;
 }
 public DNAAnalyseService(HttpClient client, IConfiguration config, IMSGConfigHelper imsConfigHelper)
 {
     _client          = client;
     _imsConfigHelper = imsConfigHelper;
 }
Example #3
0
 public HomeController(IMSGConfigHelper mSGConfigHelper)
 {
     _MSGConfigHelper = mSGConfigHelper;
 }
 public GraphQLController(MainSchema schema, IMSGConfigHelper iMSGConfigHelper)
 {
     _schema           = schema;
     _iMSGConfigHelper = iMSGConfigHelper;
 }
 public WillListService(HttpClient client, IConfiguration config, IMSGConfigHelper imsConfigHelper)
 {
     _client          = client;
     _imsConfigHelper = imsConfigHelper;
 }
 public ClaimListService(HttpClient client,
                         IConfiguration config, IMSGConfigHelper imsConfigHelper)
 {
     _imsConfigHelper = imsConfigHelper;
     _client          = client;
 }
 public SiteFunctionService(HttpClient client,
                            IConfiguration config, IMSGConfigHelper imsConfigHelper)
 {
     _client          = client;
     _imsConfigHelper = imsConfigHelper;
 }