main
 1using System.Collections.Generic;
 2using gorilla.commons.utility;
 3
 4namespace MoMoney.Service.Application
 5{
 6    public class EventLog : IEventLog
 7    {
 8        readonly IList<Command> events = new List<Command>();
 9
10        public void process(Command the_event)
11        {
12            the_event.run();
13            events.Add(the_event);
14        }
15    }
16}