예제 #1
0
 public ImagesController(IImagesService imagesService, IImagesValidator imagesValidator, IMapsValidator mapsValidator, IMapsService mapsService)
 {
     _imagesService  = imagesService;
     _imageValidator = imagesValidator;
     _mapsValidator  = mapsValidator;
     _mapsService    = mapsService;
 }
예제 #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;
 }
예제 #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));
 }
예제 #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;
 }
예제 #6
0
 public ImportService(
     IAuthorizationDataService authData,
     IMapper mapper,
     OlmaDbContext olmaDbContext,
     IMapsService mapsService
     ) : base(authData, mapper)
 {
     _olmaDbContext = olmaDbContext;
     _mapsService   = mapsService;
 }
예제 #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;
 }
예제 #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;
 }
예제 #9
0
 public WalkCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
예제 #10
0
 public TransitCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
예제 #11
0
 public MapsController(IMapsService mapsService)
 {
     this.mapsService = mapsService;
 }
예제 #12
0
 public DriveCostFunction(IMapsService mapsService, double milesPerGallon, double costPerGallon) : base(mapsService)
 {
     this.milesPerGallon = milesPerGallon;
     this.costPerGallon  = costPerGallon;
 }
예제 #13
0
 protected BaseCostFunction(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
예제 #14
0
 public MapsController(IMapsValidator mapsValidator, IMapsService mapsService)
 {
     _mapsValidator = mapsValidator;
     _mapsService   = mapsService;
 }
예제 #15
0
 public BikeCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }
예제 #16
0
 public MapsController(IMapsService service)
 {
     this.service = service;
 }
예제 #17
0
 public GeoController(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
예제 #18
0
 public DriverService(IDriverRepository driverRepository,
                      IMapsService mapsService)
 {
     _driverRepository = driverRepository;
     _mapsService      = mapsService;
 }
예제 #19
0
 public RouteSegmentationServiceImpl(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
 public HomeController(ILogger <HomeController> logger, ClubContext context, IMapsService mapsService)
 {
     _logger      = logger;
     _context     = context;
     _mapsService = mapsService;
 }
 public HomeController(Database db, IMapsService maps)
 {
     Db   = db;
     Maps = maps;
 }
 public CostFunctionFactoryImpl(IMapsService mapsService)
 {
     _mapsService = mapsService;
 }
예제 #23
0
 public RideshareCostFunction(IMapsService mapsService) : base(mapsService)
 {
 }