From 8afc67a09adec1078e7493b214b622a91326c7e0 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Tue, 29 Aug 2023 10:09:27 +1000 Subject: [PATCH] refactor --- NuGet.config | 1 - PARR.AIHIT/AIHIT/Syncher.cs | 3 --- 2 files changed, 4 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0c3dbed7..91b18a24 100644 --- a/NuGet.config +++ b/NuGet.config @@ -7,6 +7,5 @@ - diff --git a/PARR.AIHIT/AIHIT/Syncher.cs b/PARR.AIHIT/AIHIT/Syncher.cs index 36efcb7e..ae533bdb 100644 --- a/PARR.AIHIT/AIHIT/Syncher.cs +++ b/PARR.AIHIT/AIHIT/Syncher.cs @@ -25,7 +25,6 @@ namespace PARR.AIHIT private readonly IMailService mailService; private readonly SyncherSettings syncherSettings; private readonly V1_IHostService V1_hostService; - private readonly V1_IApplicationTypeService V1_appTypeService; private readonly V1_IApplicationInHostService V1_appInHostService; private readonly V1_IApplicationService V1_appService; private readonly IHostService hostService; @@ -36,7 +35,6 @@ namespace PARR.AIHIT private readonly IRawDataEKService rawDataEKService; private readonly ISettingService settingService; private readonly IAIHITService aihitService; - private readonly IApplicationService applicationService; public List AppTypes { get; private set; } = new List(); @@ -71,7 +69,6 @@ namespace PARR.AIHIT this.syncherSettings = syncherSettings; this.V1_hostService = V1_hostService; this.V1_appService = V1_appService; - this.V1_appTypeService = V1_appTypeService; this.V1_appInHostService = V1_appInHostService; }