Example #1
0
 public CitationReportBuilder(
     ICitationReportQueryService citationReportQueryService,
     IAttachmentBuilder attachmentBuilder,
     IReportHeaderBuilder reportHeaderBuilder)
 {
     _citationReportQueryService = citationReportQueryService;
     _reportHeaderBuilder        = reportHeaderBuilder;
     _attachmentBuilder          = attachmentBuilder;
 }
Example #2
0
 public CitationsController(ICitationReportCommandService citationReportCommandService, ICitationReportQueryService citationReportQueryService)
 {
     _citationReportCommandService = citationReportCommandService;
     _citationReportQueryService   = citationReportQueryService;
 }