Esempio n. 1
0
        public Account()
        {
            Register <DepositedDomainEvent>(When);
            Register <WithdrewDomainEvent>(When);
            Register <OpenedDomainEvent>(When);
            Register <ClosedDomainEvent>(When);

            Transactions = new TransactionCollection();
        }
Esempio n. 2
0
        protected void When(OpenedDomainEvent domainEvent)
        {
            //
            // Open an Account
            //

            Id           = domainEvent.AggregateRootId;
            CustomerId   = domainEvent.CustomerId;
            Transactions = new TransactionCollection();

            Transaction credit = new Credit(
                domainEvent.AggregateRootId,
                domainEvent.TransactionId,
                domainEvent.TransactionAmount,
                domainEvent.TransactionDate);

            Transactions.Add(credit);
        }
Esempio n. 3
0
 protected Account()
 {
     Transactions = new TransactionCollection();
 }