feat: Из dal перенесены все модели в Domain. Из dal переименованы service в repository, вынесены в Core.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
using PARR.Core.Repositories.Interfaces;
|
||||
using PARR.Domain.Common.Rabbit.Messages;
|
||||
using PARR.Domain.Entities;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
namespace PARR.TemplateActivator;
|
||||
@@ -10,15 +10,15 @@ namespace PARR.TemplateActivator;
|
||||
internal class TemplateActivator : ITemplateActivator
|
||||
{
|
||||
private readonly ILogger<TemplateActivator> logger;
|
||||
private readonly ITemplateService templateService;
|
||||
private readonly IRobotConfigurationService robotConfigurationService;
|
||||
private readonly ITemplateRepository templateService;
|
||||
private readonly IRobotConfigurationRepository robotConfigurationService;
|
||||
//private readonly IJobAutoControlService jobAutoControlService;
|
||||
//private readonly IApplicationsInWorkService applicationsInWorkService;
|
||||
|
||||
public TemplateActivator(
|
||||
ILogger<TemplateActivator> logger,
|
||||
ITemplateService templateService,
|
||||
IRobotConfigurationService robotConfigurationService
|
||||
ITemplateRepository templateService,
|
||||
IRobotConfigurationRepository robotConfigurationService
|
||||
//IJobAutoControlService jobAutoControlService,
|
||||
//IApplicationsInWorkService applicationsInWorkService
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user