Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
57 views

best way to create domain design model?

UPDATE: what i am looking is should i go create each classes seprately instead of adding getter/setter prop in the class, what i mean by that is: so in order to create a Visit i should have the ...
2
votes
1answer
146 views

Is this the correct way to instantiate an object with dependencies from within a Domain Model?

I'm trying to avoid ending up with an anaemic Domain Model, so I'm attempting to keep as much logic as possible within the domain model itself. I have a method called AddIngredient, which needs to add ...
2
votes
2answers
142 views

What's the correct way of accessing reference data in this Domain Data Modelling scenario?

Initial Warning: Long post and I might have got the pattern totally wrong anyway: Given the following class which is the start of the Customer Aggregate: public class Customer : KeyedObject { ...
1
vote
1answer
77 views

trading: how do you declare `Indicator` interface

I've tried to ask this question at "quantitive finance" but it seems this is better place because the question more about programing than trading How do you declare Indicator interface? What would be ...
1
vote
0answers
57 views

Party Role and Bounded Context

I am trying to use the Party Place Thing and Role archetypes from Java Modelling in Color. Further i am also try incorporate DDD best practices, Now assume that we have 1 Person who plays 2 roles say ...
0
votes
1answer
42 views

vs2010 Architecture Modelling - how to export as an image?

Using VS2010 Ultimate Ed, I've generated a model that I need to put in a Technical Document but its HUGE! Over 8000 nodes and over 32000 links. I've tried screenshot tools but they only do vertical ...
0
votes
3answers
178 views

ASP.Net MVC - Is this entity layer a step too far?

I have a domain data model which returns a class such as the following: public class ZombieDeath { public virtual int ZombieId {get;set;} public virtual FatalHit {get;set;} } public class ...