public TravelInsightsAnalysisService(ITasklingClient tasklingClient,
     IMyApplicationConfiguration configuration,
     IJourneysRepository myTravelDataService,
     ITravelInsightsRepository travelInsightsService)
 {
     _tasklingClient = tasklingClient;
     _configuration = configuration;
     _travelDataService = myTravelDataService;
     _travelInsightsService = travelInsightsService;
 }
Esempio n. 2
0
 public TravelInsightsAnalysisService(ITasklingClient tasklingClient,
                                      IMyApplicationConfiguration configuration,
                                      IJourneysRepository myTravelDataService,
                                      ITravelInsightsRepository travelInsightsService)
 {
     _tasklingClient        = tasklingClient;
     _configuration         = configuration;
     _travelDataService     = myTravelDataService;
     _travelInsightsService = travelInsightsService;
 }
Esempio n. 3
0
 public MyApplication(IMyComponent component, IMyApplicationConfiguration config)
 {
     _component = component;
     _config    = config;
 }