Example #1
0
 public LocationController(IDriverLocRepository locationRepository)
 {
     _locationRepository = locationRepository;
 }
Example #2
0
 public RouteHub(IUsersRepository usersRepository,
                 IDriverLocRepository locationRepository)
 {
     _usersRepository    = usersRepository;
     _locationRepository = locationRepository;
 }