19 lines
443 B
C#
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");
|
|
}
|
|
|
|
|
|
} |