Beispiel #1
0
 public SpanController(ISpanProducer spanProducer, ISpanStorage spanStorage, ISpanQuery spanQuery, IMapper mapper)
 {
     _spanProducer = spanProducer;
     _spanStorage  = spanStorage;
     _spanQuery    = spanQuery;
     _mapper       = mapper;
 }
 public SpanDetailController(ISpanProducer spanProducer, ISpanQuery spanQuery, IMapper mapper)
 {
     _spanQuery = spanQuery;
     _mapper    = mapper;
 }
 public SpanController(ISpanProducer spanProducer)
 {
     _spanProducer = spanProducer;
 }