Ejemplo n.º 1
0
 public ObjectRepository(
     IRouteRepository routeRepository,
     ApplicationDbContext context,
     ObjectsSyncService syncService)
     : base(context, syncService)
 {
     _routeRepository = routeRepository;
 }
Ejemplo n.º 2
0
 public ObjectRepository(
     IRouteRepository routeRepository,
     ApplicationDbContext context,
     IDataChangeEventEmitter dataChangeEventEmitter,
     ObjectsSyncService syncService)
     : base(context, dataChangeEventEmitter, syncService)
 {
     _routeRepository = routeRepository;
 }