I have Person aggregate in which Address is part and vo , but now i have another aggregate Payment which have another VO PaymentInfo , which contains details like Creditacard number and other details, but now i need Billing Address and Shipping Address in PaymentInfo VO. Now since Address is integral to Person i cannot use that.

So what i do ,

  1. Create separate Address Vo in Payment aggregate and use it as billing address and Shipping Address.

  2. Move address in to separate aggregate and reference it in PaymentInfo and Person.

  3. Create two addresses in Person itself and reference it in PaymentInfo Vo.

help me please ?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Important thing here is - value objects have no identity.
That means - they can become shared between entities easily.

With that I mean - not particular instances should be shared, but their classes, type Address instead of "UK, London street 'whatever' 16". Value object instances should never be shared (again - cause they got no identity and their state is what defines them).

So in Your place - I would make sure Address as a concept is mutually ubiquitous for person and for payment info (they must have same structure), move it into right folder/namespace so I could see that it's shared and use it for both entities.

If they aren't ubiquitous, I would rename Address as PersonAddress and create second one - PayerAddress (name might differ according to Your business You are modeling).

Quoting Jeff from provided link:

There's no problem with 2 aggregate roots referencing the same entity - they just can't reference another aggregate's internals. It is different for value objects, which are simpler. Consider how you can reference dates, like "August 20th, 2010," any number of times in your classes.

link|improve this answer
move it into right folder/namespace so I could see that it's shared and use it for both entities." and "There's no problem with 2 aggregate roots referencing the same entity" . you mean in shared folder , but address needs other class too like country and city? – kamal Apr 1 '11 at 21:26
feedback

i will go with ubiquitous nature of it. Dont reference the Person address class to the billing address and the shipping address..

Two things Can be achieved easily .one is the communication benefit which you can get in the business analyst and second is the Coding will be explicit and understandable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.