public TroubleshootingController(ITroubleshootingService troubleshootingService, ILogger <TroubleshootingController> logger)
 {
     _troubleshootingService = troubleshootingService;
     _logger = logger;
 }
示例#2
0
 public TroubleshootingController(
     ITroubleshootingService troubleshootingService)
 {
     _troubleshootingService = troubleshootingService;
 }