0
votes
2answers
409 views

Domain driven design concepts

I'm having some trouble with a few concepts in an application I am building using domain driven design. I have the following layers: Application Domain Infrastructure So, let's assume I have ...
-1
votes
1answer
110 views

Where should I keep the queries? entity class or control class?

I am trying to make my project completely object oriented and I am separating the control, entity and boundary classes (you can call it m,v,c) On my former projects, I was creating functions in the ...
1
vote
3answers
73 views

Should an object “load” another object on its own, or have the other passed to it?

Is it a good practice to load another object from within an original object, like so: Class parent() { $child; function loadChild() { $child = new Child(); $this->child = ...
1
vote
1answer
200 views

How to implement reading default object settings from a database with oop and soc

I have a class which looks like this: public class Location { private int id; private String name = "noname"; ... // other properties public Location(int locationId) { ...
1
vote
3answers
416 views

Separating Progress Tracking and Loop Logic

Suppose i want to track the progress of a loop using the progress bar printer ProgressMeter (as described in this recipe). def bigIteration(collection): for element in collection: ...
0
votes
2answers
74 views

Attributes in XML subtree that belong to the parent

Say I have this XML <doc:document> <objects> <circle radius="10" doc:colour="red" /> <circle radius="20" doc:colour="blue" /> </objects> ...
9
votes
2answers
531 views

How do you keep application logic separate from UI when UI components have built-in functionality?

I know it's important to keep user interface code separated from domain code--the application is easier to understand, maintain, change, and (sometimes) isolate bugs. But here's my mental block ... ...
3
votes
3answers
310 views

How to explain to someone that a data structure should not draw itself, explaining separation of concerns?

I have another programmer who I'm trying to explain why it is that a UI component should not also be a data-structure. For instance say that you get a data-structure that contains a record-set from ...
0
votes
1answer
128 views

How do I separate my entities from database model?

I need some help to organize my data model well. I am writing an app which will be a simple notebook. I use a three-tier architecture = business-logic, data-logic, database access. I`d like to use ...