13 lines
363 B
C#
13 lines
363 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Webzine.Repository;
|
|
|
|
public class LocalEntityRepository
|
|
{
|
|
private readonly ILogger<LocalEntityRepository> _logger;
|
|
public LocalEntityRepository(ILogger<LocalEntityRepository> logger)
|
|
{
|
|
this._logger = logger;
|
|
this._logger.LogDebug(1, "NLog injected into LocalEntityRepository");
|
|
}
|
|
} |