예제 #1
0
 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;
 }
예제 #3
0
 public PriceSubscriber(ILogger <PriceSubscriber> log, IPriceFanoutConsumer consumer, IHttpRepository messageClient, IHubContext <PriceHub> context)
 {
     _logger                  = log;
     _consumer                = consumer;
     _messageClient           = messageClient;
     _context                 = context;
     _consumer.HandleMessage += Consumer_HandleMessage;
 }
예제 #4
0
 public LazyMessager(IHttpRepository httpRepository,
                     ILazyWeChatBasic lazyWeChatBasic,
                     ILogger <LazyMessager> logger)
 {
     _httpRepository  = httpRepository;
     _lazyWeChatBasic = lazyWeChatBasic;
     _logger          = logger;
 }
예제 #5
0
 public LazyMaterials(IHttpRepository httpRepository,
                      ILazyWeChatBasic lazyWeChatBasic,
                      ILogger <LazyMaterials> logger)
 {
     _httpRepository  = httpRepository;
     _lazyWeChatBasic = lazyWeChatBasic;
     _logger          = logger;
 }
예제 #6
0
 public AnbimaApplication(IConfiguration configuration, ILogger <AnbimaApplication> logger, IHttpRepository httpRepository, IEntityRepository <Anbima> anbimaRepository, IUnitOfWork unitOfWork)
 {
     Configuration    = configuration;
     Logger           = logger;
     HttpRepository   = httpRepository;
     AnbimaRepository = anbimaRepository;
     UnitOfWork       = unitOfWork;
 }
예제 #7
0
 public LazyWeChatBasic(
     IOptions <LazyWeChatConfiguration> options,
     IHttpRepository httpRepository,
     ILogger <LazyWeChatBasic> logger)
 {
     _options        = options;
     _logger         = logger;
     _httpRepository = httpRepository;
 }
예제 #8
0
 public LazyBasicPayV2(
     IHttpRepository httpRepository,
     IQRGenerator qrGenerator,
     IOptions <LazyWeChatConfiguration> options)
 {
     _httpRepository = httpRepository;
     _qrGenerator    = qrGenerator;
     _options        = options;
 }
예제 #9
0
 public LazyBasicPayV3(
     IHttpRepository httpRepository,
     IOptions <LazyWeChatConfiguration> options,
     ILogger <LazyBasicPayV3> logger)
 {
     _httpRepository = httpRepository;
     _options        = options;
     _logger         = logger;
 }
예제 #10
0
 public LazyQYContact(
     ILazyQYBasic lazyQYBasic,
     IOptions <LazyWeChatConfiguration> options,
     IHttpRepository httpRepository,
     ILogger <LazyQYContact> logger)
 {
     _options        = options;
     _logger         = logger;
     _httpRepository = httpRepository;
     _lazyQYBasic    = lazyQYBasic;
 }
예제 #11
0
 public LazyMiniBasic(
     IOptions <LazyWeChatConfiguration> options,
     IHttpRepository httpRepository,
     ILazyWeChatBasic lazyWeChatBasic,
     ILazyMaterials lazyMaterials,
     ILogger <LazyMiniBasic> logger)
 {
     _options         = options;
     _httpRepository  = httpRepository;
     _lazyWeChatBasic = lazyWeChatBasic;
     _lazyMaterials   = lazyMaterials;
     _logger          = logger;
 }
예제 #12
0
 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;
 }
예제 #13
0
 public PriceTableDeleteService(ILogger <CandleSubscriberService> logger, IHttpRepository client)
 {
     _logger = logger;
     _client = client;
 }
예제 #14
0
 public GoogleBookRepository(IHttpRepository http)
 {
     _http = http;
 }
예제 #15
0
 public BaseController(IHttpRepository <UserModel> repository)
 {
     _repository = repository;
 }