コード例 #1
0
 public AddUnitMaintenanceProcessor(
     IAutoMapper autoMapper,
     IUnitLinkService unitLinkService,
     IAddUnitQueryProcessor queryProcessor)
 {
     _autoMapper = autoMapper;
     _queryProcessor = queryProcessor;
     _unitLinkService = unitLinkService;
 }
コード例 #2
0
 public UpdateUnitMaintenanceProcessor(
     IAutoMapper autoMapper,
     IUnitLinkService unitLinkService,
     IUpdateUnitQueryProcessor queryProcessor,
     IUpdateablePropertyDetector updateablePropertyDetector)
 {
     _autoMapper = autoMapper;
     _queryProcessor = queryProcessor;
     _unitLinkService = unitLinkService;
     _updateablePropertyDetector = updateablePropertyDetector;
 }