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