Beispiel #1
0
		public ParticipantController(
			IMapper mapper,
			IParticipantDataService participantDataService)
		{
			_mapper = mapper;
			_participantDataService = participantDataService;
		}
Beispiel #2
0
 public ReportService(
     IStarsLogger logger,
     IParticipantDataService participantService,
     IRabbitPublicationService rabbitPublicationService)
 {
     _logger                   = logger;
     _participantService       = participantService;
     _rabbitPublicationService = rabbitPublicationService;
 }