feat(api, bll, dal, generatorTemplates, templateActivator): запись истории изменения шаблонов

This commit is contained in:
Mikhail Trubnikov
2024-10-08 10:29:34 +10:00
parent 54fed9b597
commit a494b69ee6
22 changed files with 140 additions and 67 deletions

View File

@@ -1,4 +1,6 @@
namespace PARR.BLL.Domain.Mq
using PARR.Common.Domain;
namespace PARR.BLL.Domain.Mq
{
/// <summary>
/// Модель в MQ, запрос на генерацию шаблона
@@ -39,5 +41,10 @@
/// Активировать расписание
/// </summary>
public bool? IsActiveSchedule { get; set; }
/// <summary>
/// Инициатор запроса к генератору
/// </summary>
public IHistoryInitiator? HistoryInitiator { get; set; }
}
}

View File

@@ -1,4 +1,5 @@
using PARR.Constants;
using PARR.Common.Domain;
using PARR.Constants;
namespace PARR.BLL.Domain.Mq
{
@@ -16,5 +17,10 @@ namespace PARR.BLL.Domain.Mq
/// Действие по активации/деактивации
/// </summary>
public TemplateActivatorActionsEnum Action { get; set; }
/// <summary>
/// Инициатор изменений
/// </summary>
public IHistoryInitiator? HistoryInitiator { get; set; }
}
}