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