feat: Сервисы и модели RabbitMq разнесены согласно архитектуры
This commit is contained in:
@@ -5,8 +5,8 @@ using PARR.API.Contracts.V1.Responses.Base;
|
||||
using PARR.API.Contracts.V1.Responses.Statistics;
|
||||
using PARR.API.Controllers.V1.Base;
|
||||
using PARR.API.Settings;
|
||||
using PARR.BLL.Services.Interfaces;
|
||||
using PARR.Constants;
|
||||
using PARR.Core.Common.RabbitServices;
|
||||
using PARR.Domain.Common.Roles;
|
||||
|
||||
namespace PARR.API.Controllers.V1.Statistics
|
||||
{
|
||||
@@ -16,17 +16,17 @@ namespace PARR.API.Controllers.V1.Statistics
|
||||
[Authorize(Roles = ParrRoles.Administrator.Role)]
|
||||
public class StatRabbitMqController : BaseApiController
|
||||
{
|
||||
private readonly IMqService mqService;
|
||||
private readonly IRabbitService mqService;
|
||||
private readonly MqSettings mqSettings;
|
||||
private readonly ILogger<StatRabbitMqController> logger;
|
||||
private readonly IMqAdminService mqAdminService;
|
||||
private readonly IRabbitAdminService mqAdminService;
|
||||
private readonly MonitoringSettings monitoringSettings;
|
||||
|
||||
public StatRabbitMqController(
|
||||
IMqService mqService,
|
||||
IRabbitService mqService,
|
||||
MqSettings mqSettings,
|
||||
ILogger<StatRabbitMqController> logger,
|
||||
IMqAdminService mqAdminService,
|
||||
IRabbitAdminService mqAdminService,
|
||||
MonitoringSettings monitoringSettings
|
||||
)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user