public OtherEventSummariesController(
     IOtherEventSummaryQueryService otherEventSummaryQueryService,
     IOtherEventSummaryCommandService otherEventSummaryCommandService)
 {
     _otherEventSummaryQueryService   = otherEventSummaryQueryService;
     _otherEventSummaryCommandService = otherEventSummaryCommandService;
 }
 public OtherEventSummaryBuilder(IOtherEventSummaryQueryService otherEventSummaryQueryService,
                                 IAttachmentBuilder attachmentBuilder, IReportHeaderBuilder reportHeaderBuilder)
 {
     _otherEventSummaryQueryService = otherEventSummaryQueryService;
     _reportHeaderBuilder           = reportHeaderBuilder;
     _attachmentBuilder             = attachmentBuilder;
 }