main
1using gorilla.commons.utility;
2
3namespace MoMoney.Service.Application
4{
5 public interface IEventLog
6 {
7 void process(Command the_event);
8 }
9}