public ExternalController(IAgencyService agencyService, IProductRepository productRepository, IExternalService externalService, IMatchingService matchingService, IMetaProductRepository metaProductRepository) { this.agencyService = agencyService; this.productRepository = productRepository; this.externalService = externalService; this.matchingService = matchingService; this.metaProductRepository = metaProductRepository; }
public OrganizationController(IUnitOfWork unitOfWork, ILogger <OrganizationController> logger, IExternalService externalService) { _unitOfWork = unitOfWork; _externalService = externalService; _logger = logger; }
public MessagesController(IGetMeals getMeals, ISiteConfigService siteConfigService, IExternalService externalService) { _getMeals = getMeals; _siteConfigService = siteConfigService; _externalService = externalService; }
public ExternalServiceAdapter(IExternalService externalService) { _externalService = externalService; }
public PartialController(IExternalService externalService, IStudentService studentService, IPersonalService personalService) { this.externalService = externalService; this.studentService = studentService; this.personalService = personalService; }
public CustomerService(ICustomerRepository customerRepository, IExternalService externalService) { _customerRepository = customerRepository; _externalService = externalService; }
public ComServiceDecorator(IExternalService inner) { _inner = inner; }
public SampleEvent(ILogger <SampleEvent> logger, IExternalService service) { //this.service = DispatchProxyService<IExternalService>.Create(service, logger); this.service = service; }
public CreateProjectCommandHandler(IExternalService externalService) { _externalService = externalService; }
public HGSController(IExternalService externalService, IAccountService accountService) { _externalService = externalService; _accountService = accountService; }
//1. refactoring -- all request models need a "BaseRequest" class with 'base' properties and key property (hard code it) //2. doing step 1 will allow use to stop repeats (i.e. HandleUnknownRequest) public BasicQnAMakerDialog(string channelId, IGetMeals getMeals, ISiteConfigService siteConfigService, IExternalService externalService) : base(new LuisService(new LuisModelAttribute("c446f04c-fc34-40d9-8853-3947206e7e91", "7c9c6106d0144f42b132891ae3749be2"))) { _channelId = channelId; _getMeals = getMeals; _siteConfigService = siteConfigService; _externalService = externalService; }
public SimpleRepositoryService() { this.gatewayRepository = new GatewayRepository(); this.controllerRepository = new ControllerRepository(); this.externalService = new ExternalServiceMock(); }
public DollarManager(IExternalService externalService, IExchangeRepository repository, ILogger <DollarManager> logger) { _externalService = externalService; _repository = repository; _logger = logger; }
public ExternalController(IExternalService externalService, ILogger <ExternalController> logger) { _externalService = externalService; _logger = logger; }
public UoWRepositoryService() { this.dummyWebService = new ExternalServiceMock(); }
public HomeController(IExternalService myService, ILocalService anotherService) { _myService = myService; _anotherService = anotherService; }
public LadderService(ILogger <LadderService> log, IExternalService externalService, IHostingEnvironment env) { _log = log; _env = env; _externalService = externalService; }
public ValuesController(IDataService dataService, IExternalService externalService) { _externalService = externalService; _dataService = dataService; }
public CurrencyManagerFactory(IExternalService externalService, IExchangeRepository repository, ICurrencyManager dollarManager) { _externalService = externalService; _repository = repository; _dollarManager = dollarManager; }
public Thing(IExternalService externalService) { _externalService = externalService; }
public SearchResult(IExternalService service) { ServiceName = service.Name; Result = Enum.GetName(typeof(ResultStatus), service.LastRequestStatus); }
public HttpClientProxy(IHttpClientFactory httpClientFactory, IExternalService externalService, IOptions <Settings> settings) { _httpClientFactory = httpClientFactory; _externalService = externalService; _settings = settings; }
public ExternalController( IExternalService externalService) { _externalService = externalService; }
public UserService(IExternalService externalService) { ExternalService = externalService; }
public UsersService1(IExternalService externalService) { _externalService = externalService; }