public RouteStopRepository(CommlineDBContext db,
                            LineRepository lineRepository, StopRepository stopRepository) : base(db)
 {
     _lineRepository = lineRepository;
     _stopRepository = stopRepository;
 }
Beispiel #2
0
 public LineRepository(CommlineDBContext db, StopRepository stopRepository) : base(db)
 {
     _stopRepository = stopRepository;
 }