public AllStatusesInquiryProcessor(IAllStatusesQueryProcessor queryProcessor, IAutoMapper autoMapper,
     IStatusLinkService statusLinkService)
 {
     _queryProcessor = queryProcessor;
     _autoMapper = autoMapper;
     _statusLinkService = statusLinkService;
 }
Beispiel #2
0
 public AllStatusesInquiryProcessor(IAllStatusesQueryProcessor queryProcessor, IAutoMapper autoMapper,
                                    IStatusLinkService statusLinkService)
 {
     _queryProcessor    = queryProcessor;
     _autoMapper        = autoMapper;
     _statusLinkService = statusLinkService;
 }
 public AllStatusesProcessor(
     IAutoMapper autoMapper, 
     IStatusLinkService statusLinkService, 
     IAllStatusesQueryProcessor queryProcessor)
 {
     _autoMapper = autoMapper;
     _statusLinkService = statusLinkService;
     _queryProcessor = queryProcessor;
 }