public Test(IHttpRepository httpRepository, IAppInsightsRepository appInsightsRepository, IUnitOfWork uow, ILogger <Test> logger) { _httpRepository = httpRepository; _appInsightsRepository = appInsightsRepository; _uow = uow; _logger = logger; }
public CurrentUserRepository( IHttpRepository httpRepository, StandardListsContext ctx) { _ctx = ctx; _httpRepository = httpRepository; }
public PriceSubscriber(ILogger <PriceSubscriber> log, IPriceFanoutConsumer consumer, IHttpRepository messageClient, IHubContext <PriceHub> context) { _logger = log; _consumer = consumer; _messageClient = messageClient; _context = context; _consumer.HandleMessage += Consumer_HandleMessage; }
public LazyMessager(IHttpRepository httpRepository, ILazyWeChatBasic lazyWeChatBasic, ILogger <LazyMessager> logger) { _httpRepository = httpRepository; _lazyWeChatBasic = lazyWeChatBasic; _logger = logger; }
public LazyMaterials(IHttpRepository httpRepository, ILazyWeChatBasic lazyWeChatBasic, ILogger <LazyMaterials> logger) { _httpRepository = httpRepository; _lazyWeChatBasic = lazyWeChatBasic; _logger = logger; }
public AnbimaApplication(IConfiguration configuration, ILogger <AnbimaApplication> logger, IHttpRepository httpRepository, IEntityRepository <Anbima> anbimaRepository, IUnitOfWork unitOfWork) { Configuration = configuration; Logger = logger; HttpRepository = httpRepository; AnbimaRepository = anbimaRepository; UnitOfWork = unitOfWork; }
public LazyWeChatBasic( IOptions <LazyWeChatConfiguration> options, IHttpRepository httpRepository, ILogger <LazyWeChatBasic> logger) { _options = options; _logger = logger; _httpRepository = httpRepository; }
public LazyBasicPayV2( IHttpRepository httpRepository, IQRGenerator qrGenerator, IOptions <LazyWeChatConfiguration> options) { _httpRepository = httpRepository; _qrGenerator = qrGenerator; _options = options; }
public LazyBasicPayV3( IHttpRepository httpRepository, IOptions <LazyWeChatConfiguration> options, ILogger <LazyBasicPayV3> logger) { _httpRepository = httpRepository; _options = options; _logger = logger; }
public LazyQYContact( ILazyQYBasic lazyQYBasic, IOptions <LazyWeChatConfiguration> options, IHttpRepository httpRepository, ILogger <LazyQYContact> logger) { _options = options; _logger = logger; _httpRepository = httpRepository; _lazyQYBasic = lazyQYBasic; }
public LazyMiniBasic( IOptions <LazyWeChatConfiguration> options, IHttpRepository httpRepository, ILazyWeChatBasic lazyWeChatBasic, ILazyMaterials lazyMaterials, ILogger <LazyMiniBasic> logger) { _options = options; _httpRepository = httpRepository; _lazyWeChatBasic = lazyWeChatBasic; _lazyMaterials = lazyMaterials; _logger = logger; }
public CalculatorPresenter(ICalculatorView view, ICalculatorRepository repo, IHttpRepository httpRepo, ILogger logger, string ServiceUrl, bool IsDev) { _view = view; _calRepo = repo; _view.SubmitClick += SubmitClick; _httpRepo = httpRepo; _logger = logger; _serviceUrl = ServiceUrl; _isDev = IsDev; }
public PriceTableDeleteService(ILogger <CandleSubscriberService> logger, IHttpRepository client) { _logger = logger; _client = client; }
public GoogleBookRepository(IHttpRepository http) { _http = http; }
public BaseController(IHttpRepository <UserModel> repository) { _repository = repository; }