Example #1
0
 public BlaBlaCarJob(BlaBlaCarFinder tripFinder, DataContext dataContext, SmtpService smtpService, SmsService smsService)
 {
     this.dataContext = dataContext;
     this.tripFinder  = tripFinder;
     this.smtpService = smtpService;
     this.smsService  = smsService;
 }
Example #2
0
 public RailwayJob(RailwayFinder tripFinder, DataContext dataContext, SmtpService smtpService, SmsService smsService)
 {
     this.dataContext = dataContext;
     this.tripFinder  = tripFinder;
     this.smtpService = smtpService;
     this.smsService  = smsService;
 }
 public BusController(BusFinder busFinder)
 {
     tripFinder = busFinder;
 }
Example #4
0
 public BlaBlaCarController(BlaBlaCarFinder blaBlaCarFinder)
 {
     tripFinder = blaBlaCarFinder;
 }
 public RailwayController(RailwayFinder railwayFinder)
 {
     tripFinder = railwayFinder;
 }