public void LogEtlCounter(EtlCounter counter)
 {
     foreach (var logger in _loggers)
     {
         logger.LogEtlCounter(counter);
     }
 }
예제 #2
0
 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);
        }
예제 #4
0
        public void LogEtlCounter(EtlCounter counter)
        {
            if (counter == null)
            {
                throw new ArgumentNullException("counter");
            }

            _counters.Add(counter);
        }
예제 #5
0
 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;
 }
 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)
 {
 }
예제 #8
0
 public void LogEtlCounter(EtlCounter counters)
 {
 }