public InfoController(IOptions <MyConfig> config, IGethClient gethClient, BlockchainService blockchainService) { _config = config; _gethClient = gethClient; _blockchainService = blockchainService; }
public BlockchainService(IGethClient gethClient, IOptions <MyConfig> config) { _gethClient = gethClient; _config = config; }
public HomeController(IOptions <MyConfig> config, IGethClient gethClient) { _config = config; _gethClient = gethClient; }