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.Core.Repositories.Interfaces;
|
||||
using PARR.DAL.NextRunServices;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
using PARR.Domain.Entities;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
@@ -11,15 +11,15 @@ namespace PARR.NextRun.Services
|
||||
internal class NextRunUpdateService : INextRunUpdateService
|
||||
{
|
||||
private readonly ILogger<NextRunUpdateService> logger;
|
||||
private readonly ITemplateService templateService;
|
||||
private readonly ITemplateRepository templateService;
|
||||
private readonly INextRunService nextRunService;
|
||||
private readonly IRobotConfigurationService robotConfigurationService;
|
||||
private readonly IRobotConfigurationRepository robotConfigurationService;
|
||||
|
||||
public NextRunUpdateService(
|
||||
ILogger<NextRunUpdateService> logger,
|
||||
ITemplateService templateService,
|
||||
ITemplateRepository templateService,
|
||||
INextRunService nextRunService,
|
||||
IRobotConfigurationService robotConfigurationService
|
||||
IRobotConfigurationRepository robotConfigurationService
|
||||
)
|
||||
{
|
||||
this.logger = logger;
|
||||
|
||||
Reference in New Issue
Block a user