This commit is contained in:
Mikhail Trubnikov
2023-08-29 10:09:27 +10:00
parent 7e929182f7
commit 8afc67a09a
2 changed files with 0 additions and 4 deletions

View File

@@ -7,6 +7,5 @@
</packageSources> </packageSources>
<disabledPackageSources> <disabledPackageSources>
<add key="Microsoft Visual Studio Offline Packages" value="true" /> <add key="Microsoft Visual Studio Offline Packages" value="true" />
<add key="nuget.org" value="true" />
</disabledPackageSources> </disabledPackageSources>
</configuration> </configuration>

View File

@@ -25,7 +25,6 @@ namespace PARR.AIHIT
private readonly IMailService mailService; private readonly IMailService mailService;
private readonly SyncherSettings syncherSettings; private readonly SyncherSettings syncherSettings;
private readonly V1_IHostService V1_hostService; private readonly V1_IHostService V1_hostService;
private readonly V1_IApplicationTypeService V1_appTypeService;
private readonly V1_IApplicationInHostService V1_appInHostService; private readonly V1_IApplicationInHostService V1_appInHostService;
private readonly V1_IApplicationService V1_appService; private readonly V1_IApplicationService V1_appService;
private readonly IHostService hostService; private readonly IHostService hostService;
@@ -36,7 +35,6 @@ namespace PARR.AIHIT
private readonly IRawDataEKService rawDataEKService; private readonly IRawDataEKService rawDataEKService;
private readonly ISettingService settingService; private readonly ISettingService settingService;
private readonly IAIHITService aihitService; private readonly IAIHITService aihitService;
private readonly IApplicationService applicationService;
public List<ApplicationType> AppTypes { get; private set; } = new List<ApplicationType>(); public List<ApplicationType> AppTypes { get; private set; } = new List<ApplicationType>();
@@ -71,7 +69,6 @@ namespace PARR.AIHIT
this.syncherSettings = syncherSettings; this.syncherSettings = syncherSettings;
this.V1_hostService = V1_hostService; this.V1_hostService = V1_hostService;
this.V1_appService = V1_appService; this.V1_appService = V1_appService;
this.V1_appTypeService = V1_appTypeService;
this.V1_appInHostService = V1_appInHostService; this.V1_appInHostService = V1_appInHostService;
} }