Esempio n. 1
0
        public static Customer4 Reconstitute(List <IEvent> events)
        {
            var customer = new Customer4();

            customer.Apply(events);

            return(customer);
        }
Esempio n. 2
0
        public static Customer4 Register(RegisterCustomer command)
        {
            Customer4 customer = new Customer4();

            // TODO

            return(customer);
        }