Убрать XML-доки из реализаций фабрик

This commit is contained in:
2026-09-13 04:17:43 +03:00
parent 58df018ea4
commit a9d26b6ffc
5 changed files with 0 additions and 20 deletions
@@ -5,9 +5,6 @@ using Deal.Modules.Tenants.Application.Models;
namespace Deal.Infrastructure.Persistence.Services;
/// <summary>
/// Фабрика EF-адаптера хранилища лимитов с дефолт-бюджетом из конфигурации
/// </summary>
public sealed class TenantLimitStoreFactory : ITenantLimitStoreFactory
{
private readonly DealDbContext _dbContext;
@@ -21,6 +18,5 @@ public sealed class TenantLimitStoreFactory : ITenantLimitStoreFactory
_defaults = defaults;
}
/// <inheritdoc />
ITenantLimitStore ITenantLimitStoreFactory.Create() => new TenantLimitStore(_dbContext, _defaults);
}