fix(aihit): Подключил сервис
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using AutoMapper;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.AIHIT.Services;
|
||||
using PARR.DAL.Contracts;
|
||||
using PARR.DAL.Extensions;
|
||||
using PARR.DAL.Models;
|
||||
@@ -21,6 +22,7 @@ namespace PARR.AIHIT
|
||||
private readonly IApplicationInHostService appInHostService;
|
||||
private readonly IRawDataEKService rawDataEKService;
|
||||
private readonly ISettingService settingService;
|
||||
private readonly IAIHITService aihitService;
|
||||
|
||||
public List<ApplicationType> AppTypes { get; private set; } = new List<ApplicationType>();
|
||||
|
||||
@@ -32,7 +34,8 @@ namespace PARR.AIHIT
|
||||
IApplicationTypeService appTypeService,
|
||||
IApplicationInHostService appInHostService,
|
||||
IRawDataEKService rawDataEKService,
|
||||
ISettingService settingService
|
||||
ISettingService settingService,
|
||||
IAIHITService aihitService
|
||||
)
|
||||
{
|
||||
this.hostService = hostService;
|
||||
@@ -42,6 +45,7 @@ namespace PARR.AIHIT
|
||||
this.appInHostService = appInHostService;
|
||||
this.rawDataEKService = rawDataEKService;
|
||||
this.settingService = settingService;
|
||||
this.aihitService = aihitService;
|
||||
this.logger = logger;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user