Acropolis.Foundation.EventSourcing.Logging.EventHandlerRecordCollection.EventHandlerRecordCollection C# (CSharp) Method

EventHandlerRecordCollection() public method

Initializes a new instance of the T:System.Object class.
public EventHandlerRecordCollection ( List records ) : System
records List
return System
        public EventHandlerRecordCollection(List<EventHandlerRecord> records)
        {
            foreach (var record in records)
            {
                if (record.ErrorMessage != "")
                    _errors++;
            }

            _records = records;
        }
EventHandlerRecordCollection