Lets look at the typical web application scenario
- User clicks 'create TEST application' button initiating a get request for TEST application form (in this case .aspx)
Prior to loading the TEST form
a. Service Layer requests the TEST Application Factory to create a domain object
b. Factory initializes an application # and other nested objects
c. Factory returns the domain object
d. Service takes help of an Assembler to create a DTO and return to the Presentation Layer- User fills in the data and submits the TEST Application form
- Presentation Layer creates a DTO and sends it across to service layer
Questions
- How should the system construct the domain object from dto after user submits the data back for validation?
- Should we use a factory or let the mapper/assembler construct the Domain object from DTO?
- If we use mapper to construct the domain object from dto then it break the factory rule :(
- If we use the factory once again wont it recreate a new Application# for the domain object? rehydrate the domain object from DTO using Assembler?