public MessageHandlers(GeoDataSerialisationService serialisationService, AppDbContext context)
 {
     _serialisationService = serialisationService;
     _context = context;
 }
Ejemplo n.º 2
0
 public MessageHandler(GeoDataSerialisationService serialisationService)
 {
     _serialisationService = serialisationService;
 }
Ejemplo n.º 3
0
 public WeatherForecastController(ICapPublisher publisher, AppDbContext context, GeoDataSerialisationService serialisationService)
 {
     _publisher            = publisher;
     _context              = context;
     _serialisationService = serialisationService;
 }