feat: Вынесены настройки из dal

This commit is contained in:
Mikhail Trubnikov
2026-04-14 16:42:15 +10:00
parent 188ebc20a0
commit 50358fd5bd
8 changed files with 31 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
using Microsoft.EntityFrameworkCore;
using PARR.DAL.Settings;
using PARR.Domain.Entities.Base;
using PARR.Domain.Settings;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View File

@@ -2,8 +2,8 @@
using PARR.DAL.Context;
using PARR.DAL.Models.Schedule;
using PARR.DAL.Models.Unit;
using PARR.DAL.Settings;
using PARR.Domain.Entities.Base;
using PARR.Domain.Settings;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View File

@@ -18,8 +18,6 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PARR.BLL\PARR.BLL.csproj" />
<ProjectReference Include="..\PARR.Common\PARR.Common.csproj" />
<ProjectReference Include="..\PARR.Core\PARR.Core.csproj" />
<ProjectReference Include="..\PARR.Domain\PARR.Domain.csproj" />
</ItemGroup>

View File

@@ -23,8 +23,8 @@ using PARR.DAL.Services.Interfaces;
using PARR.DAL.Services.Interfaces.Job;
using PARR.DAL.Services.Interfaces.Schedule;
using PARR.DAL.Services.Interfaces.Unit;
using PARR.DAL.Settings;
using PARR.DAL.TaskServices;
using PARR.Domain.Settings;
namespace PARR.DAL
{
@@ -64,9 +64,9 @@ namespace PARR.DAL
//});
var groupedShortcodesCacheSettings = new GroupedShortcodesCacheSettings();
configuration.GetSection(nameof(GroupedShortcodesCacheSettings)).Bind(groupedShortcodesCacheSettings);
services.AddSingleton(groupedShortcodesCacheSettings);
//var groupedShortcodesCacheSettings = new GroupedShortcodesCacheSettings();
//configuration.GetSection(nameof(GroupedShortcodesCacheSettings)).Bind(groupedShortcodesCacheSettings);
//services.AddSingleton(groupedShortcodesCacheSettings);
//services.AddSingleton<IRedisCacheService, RedisCacheService>();

View File

@@ -1,10 +0,0 @@
namespace PARR.DAL.Settings
{
public class GroupedShortcodesCacheSettings
{
/// <summary>
/// Время хранения
/// </summary>
public TimeSpan ValueTtl { get; set; } = TimeSpan.FromMinutes(20);
}
}

View File

@@ -1,13 +0,0 @@
namespace PARR.DAL.Settings
{
/// <summary>
/// Для использования в моделе, в геттере, ApplicationInWork
/// </summary>
internal static class PrefixSettings
{
/// <summary>
/// Префикс без динамической приставки
/// </summary>
public static string PrefixWithoutVariable = "default value";
}
}