Beispiel #1
0
 public ObjectRepository(
     IRouteRepository routeRepository,
     ApplicationDbContext context,
     ObjectsSyncService syncService)
     : base(context, syncService)
 {
     _routeRepository = routeRepository;
 }
Beispiel #2
0
 public ObjectRepository(
     IRouteRepository routeRepository,
     ApplicationDbContext context,
     IDataChangeEventEmitter dataChangeEventEmitter,
     ObjectsSyncService syncService)
     : base(context, dataChangeEventEmitter, syncService)
 {
     _routeRepository = routeRepository;
 }