Suppose a Person object may have many Addresses but must have one

Do you favor making the one required Address explicit in the object model? If so, any implementation tips?

Cheers,
Berryl

Person{
    Address TheRequiredAddress {get;}    

    IList<Address> OtherAddresses {....}
}
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I like this question. As with most design decisions, this is contextual. How will this be used.

Assume I have a primary address in Seattle and a summer house in Phoenix, and a PO box for business purposes. Will my primary address have special priority over my other addresses, or is the choice of address arbitrary? Will you try to locate me in Seattle before you try my summer house or my PO box?

In the case where the primary address is treated differently, I would store it in an explicitly separate location. Otherwise, store them in an arbitrarily ordered collection and enforce the requirement for at least one within the class implementation.

link|improve this answer
1  
"..enforce the requirement for at least one.." - e.g. w/ constructor – Arnis L. Jul 19 '11 at 20:17
@Josh G. I like this answer because you have some good thoughts on what it depends on! I also like it because I agree with you :--) – Berryl Jul 19 '11 at 21:38
feedback

Your Answer

 
or
required, but never shown

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