public void LogEtlCounter(EtlCounter counter) { foreach (var logger in _loggers) { logger.LogEtlCounter(counter); } }
public void LogEtlCounter(EtlCounter counter) { if (counter == null) { throw new ArgumentNullException("counter"); } _counters.Add(counter); }
protected EtlCounter(EtlCounter obj) { this.EtlPackageId = obj.EtlPackageId; this.EtlSessionId = obj.EtlSessionId; this.EntityName = obj.EntityName; this.CounterName = obj.CounterName; this.CounterValue = obj.CounterValue; this.DateTime = obj.DateTime; this.UtcDateTime = obj.UtcDateTime; }
public void LogEtlCounter(EtlCounter counters) { }