feat: Сервисы и модели RabbitMq разнесены согласно архитектуры
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using PARR.BLL.Domain.Mq;
|
||||
using PARR.BLL.Services.Interfaces;
|
||||
using PARR.Core.Common.RabbitServices;
|
||||
using PARR.DAL.Services.Interfaces.Job;
|
||||
using PARR.Domain.Common.Rabbit.Messages;
|
||||
using PARR.NextRun.Services;
|
||||
using PARR.NextRun.Settings;
|
||||
|
||||
@@ -15,14 +16,14 @@ namespace PARR.NextRun
|
||||
internal class NextRunRabbitService : INextRunRabbitService
|
||||
{
|
||||
private readonly ILogger<NextRunRabbitService> logger;
|
||||
private readonly IMqService mqService;
|
||||
private readonly IRabbitService mqService;
|
||||
private readonly WorkerSettings workerSettings;
|
||||
private readonly ITransformService transformService;
|
||||
private readonly IServiceProvider serviceProvider;
|
||||
|
||||
public NextRunRabbitService(
|
||||
ILogger<NextRunRabbitService> logger,
|
||||
IMqService mqService,
|
||||
IRabbitService mqService,
|
||||
WorkerSettings workerSettings,
|
||||
ITransformService transformService,
|
||||
IServiceProvider serviceProvider
|
||||
|
||||
Reference in New Issue
Block a user