Esempio n. 1
0
        protected AggregateBaseEx(IRouteEventsEx handler)
        {
            if (handler == null)
            {
                return;
            }

            this.RegisteredRoutes = handler;
            this.RegisteredRoutes.Register(this);
        }
Esempio n. 2
0
 internal AggregateRoot(IRouteEventsEx handler)
     : base(handler)
 {
 }