Exemplo n.º 1
0
 public ImagesController(IImagesService imagesService, IImagesValidator imagesValidator, IMapsValidator mapsValidator, IMapsService mapsService)
 {
     _imagesService  = imagesService;
     _imageValidator = imagesValidator;
     _mapsValidator  = mapsValidator;
     _mapsService    = mapsService;
 }
Exemplo n.º 2
0
 public BlaBlaCarFinder(IHttpService httpService, IDateFormatter dateFormatter, IOptions <BlaBlaCarConfig> options, IMapsService mapsService)
 {
     this.httpService   = httpService;
     this.dateFormatter = dateFormatter;
     this.mapsService   = mapsService;
     config             = options.Value;
 }
Exemplo n.º 3
0
 public RailwayFinder(IHttpService httpService, IDateFormatter dateFormatter, IOptions <RailwayConfig> options,
                      IMapsService mapsService, ILinkBuilder linkBuilder)
 {
     this.httpService   = httpService;
     this.dateFormatter = dateFormatter;
     this.mapsService   = mapsService;
     this.linkBuilder   = linkBuilder;
     config             = options.Value;
 }
 public PScoreService(
     IOptions <PScoreConfiguration> pScoreConfiguration,
     IMapsService mapsService
     )
 {
     _mapsService         = mapsService;
     _pScoreConfiguration = pScoreConfiguration?.Value ??
                            throw new ArgumentNullException(nameof(pScoreConfiguration));
 }
Exemplo n.º 5
0
 public BusFinder(IHttpService httpService, IDateFormatter dateFormatter, IOptions <BusConfig> options, IMapsService mapsService, ILinkBuilder linkBuilder)
 {
     this.httpService   = httpService;
     this.dateFormatter = dateFormatter;
     this.mapsService   = mapsService;
     this.linkBuilder   = linkBuilder;
     config             = options.Value;
     availableStations  = GetAvailableStations().Result;
 }
Exemplo n.º 6
0
 public ImportService(
     IAuthorizationDataService authData,
     IMapper mapper,
     OlmaDbContext olmaDbContext,
     IMapsService mapsService
     ) : base(authData, mapper)
 {
     _olmaDbContext = olmaDbContext;
     _mapsService   = mapsService;
 }
Exemplo n.º 7
0
 public TagsService(ITagsRepository tagsRepository, IImagesRepository imagesRepository, ICompoundImagesRepository compoundImagesRepository, ICompoundImageTagsRepository compoundImageTagsRepository, IQueueAdapter queueAdapter, ICompoundImageMappingsRepository compoundImageMappingsRepository, IImagesService imagesService, ITagsAnalyser tagsAnalyser, IMapsService mapsService)
 {
     _tagsRepository                  = tagsRepository;
     _imagesRepository                = imagesRepository;
     _compoundImagesRepository        = compoundImagesRepository;
     _compoundImageTagsRepository     = compoundImageTagsRepository;
     _compoundImageMappingsRepository = compoundImageMappingsRepository;
     _imagesService = imagesService;
     _tagsAnalyser  = tagsAnalyser;
     _mapsService   = mapsService;
 }
Exemplo n.º 8
0
 public OrderMatchesService(
     IAuthorizationDataService authData,
     IMapper mapper,
     IRepository <Olma.LoadCarrier> olmaLoadCarrierRepo,
     IRepository <Olma.OrderMatch> olmaOrderMatchRepo,
     IRepository <Olma.Order> olmaOrderRepo,
     INumberSequencesService numberSequencesService,
     IMapsService maps,
     IRepository <Olma.LmsOrder> lmsOrderGroupRepo
     ) : base(authData, mapper)
 {
     _olmaLoadCarrierRepo    = olmaLoadCarrierRepo;
     _olmaOrderMatchRepo     = olmaOrderMatchRepo;
     _olmaOrderRepo          = olmaOrderRepo;
     _numberSequencesService = numberSequencesService;
     _maps         = maps;
     _lmsOrderRepo = lmsOrderGroupRepo;
 }
Exemplo n.º 9
0
 public WalkCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
Exemplo n.º 10
0
 public TransitCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
Exemplo n.º 11
0
 public MapsController(IMapsService mapsService)
 {
     this.mapsService = mapsService;
 }
Exemplo n.º 12
0
 public DriveCostFunction(IMapsService mapsService, double milesPerGallon, double costPerGallon) : base(mapsService)
 {
     this.milesPerGallon = milesPerGallon;
     this.costPerGallon  = costPerGallon;
 }
Exemplo n.º 13
0
 protected BaseCostFunction(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
Exemplo n.º 14
0
 public MapsController(IMapsValidator mapsValidator, IMapsService mapsService)
 {
     _mapsValidator = mapsValidator;
     _mapsService   = mapsService;
 }
Exemplo n.º 15
0
 public BikeCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
Exemplo n.º 16
0
 public MapsController(IMapsService service)
 {
     this.service = service;
 }
Exemplo n.º 17
0
 public GeoController(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
Exemplo n.º 18
0
 public DriverService(IDriverRepository driverRepository,
                      IMapsService mapsService)
 {
     _driverRepository = driverRepository;
     _mapsService      = mapsService;
 }
Exemplo n.º 19
0
 public RouteSegmentationServiceImpl(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
 public HomeController(ILogger <HomeController> logger, ClubContext context, IMapsService mapsService)
 {
     _logger      = logger;
     _context     = context;
     _mapsService = mapsService;
 }
Exemplo n.º 21
0
 public HomeController(Database db, IMapsService maps)
 {
     Db   = db;
     Maps = maps;
 }
Exemplo n.º 22
0
 public CostFunctionFactoryImpl(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
Exemplo n.º 23
0
 public RideshareCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }