Acropolis.Foundation.EventSourcing.Logging.EventHandlerRecordCollection.EventHandlerRecordCollection C# (CSharp) Метод

EventHandlerRecordCollection() публичный Метод

Initializes a new instance of the T:System.Object class.
public EventHandlerRecordCollection ( List records ) : System
records List
Результат System
        public EventHandlerRecordCollection(List<EventHandlerRecord> records)
        {
            foreach (var record in records)
            {
                if (record.ErrorMessage != "")
                    _errors++;
            }

            _records = records;
        }
EventHandlerRecordCollection