Пример #1
0
 public ArrestReportBuilder(IArrestReportQueryService arrestReportQueryService,
                            IAttachmentBuilder attachmentBuilder, IReportHeaderBuilder reportHeaderBuilder)
 {
     _arrestReportQueryService = arrestReportQueryService;
     _reportHeaderBuilder      = reportHeaderBuilder;
     _attachmentBuilder        = attachmentBuilder;
 }
Пример #2
0
 public ArrestsController(IArrestReportCommandService arrestReportCommandService,
                          IArrestReportQueryService arrestReportQueryService)
 {
     _arrestReportCommandService = arrestReportCommandService;
     _arrestReportQueryService   = arrestReportQueryService;
 }