public GameTechnologiesMaintenanceProcessor(
     IAutoMapper autoMapper, 
     IGameLinkService gameLinkService,
     IUpdateGameQueryProcessor queryProcessor)
 {
     _autoMapper = autoMapper;
     _queryProcessor = queryProcessor;
     _gameLinkService = gameLinkService;
 }
 public UpdateGameMaintenanceProcessor(
     IAutoMapper autoMapper, 
     IGameLinkService gameLinkService,
     IUpdateGameQueryProcessor queryProcessor, 
     IUpdateablePropertyDetector updateablePropertyDetector)
 {
     _autoMapper = autoMapper;
     _queryProcessor = queryProcessor;
     _gameLinkService = gameLinkService;
     _updateablePropertyDetector = updateablePropertyDetector;
 }