PPPDDDChap23.EventSourcing.Application.Model.PayAsYouGo.CreditAdded.CreditAdded C# (CSharp) Method

CreditAdded() public method

public CreditAdded ( System.Guid aggregateId, Money credit ) : System
aggregateId System.Guid
credit Money
return System
        public CreditAdded(Guid aggregateId, Money credit)
            : base(aggregateId)
        {
            Credit = credit;
        }
CreditAdded