Exemplo n.º 1
0
 public NLogService(INLogRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 2
0
 public NLogController(INLogRepository repository)
 {
     NLogRepository = repository ?? throw new ArgumentNullException(nameof(repository));
 }