Files
webzine/Webzine.Repository/LocalEntityRepository.cs
b.nodon 0c7996ae1f Rework #30 #31 #43 :
- Changement de la route
- CSS remplacé par bootstrap
2026-03-05 15:28:27 +01:00

19 lines
443 B
C#

using Webzine.Repository.Contracts;
using Microsoft.Extensions.Logging;
namespace Webzine.Repository;
using Entity;
using Entity.Fixtures;
public class LocalEntityRepository
{
private readonly ILogger<LocalEntityRepository> _logger;
public LocalEntityRepository(ILogger<LocalEntityRepository> logger)
{
this._logger = logger;
this._logger.LogDebug(1, "NLog injected into LocalEntityRepository");
}
}