An indicator within a codebase that possibly indicates a deeper problem.
2
votes
0answers
86 views
Is using MultiMaps code smell? If so what alternative data structures fit my needs?
I'm trying to model nWoD characters for a roleplaying game in a character builder program. The crux is I want to support saving too and loading from yaml documents.
One aspect of the character's is ...
0
votes
0answers
23 views
Create a subclass of model for class-based viewmodel creation
Is it justified to create a model subclass just for creation of appropriate viewmodel based on this class. Am I missing something? How to pass data about model into viewmodel?
0
votes
0answers
128 views
DRY on API specifcations?
When developing a new RESTful application, I generally:
Define tests
Define routes [ e.g.: RESTful CRUD; namespaced on /api/users ]
Define models [ e.g.: "Users" ]
Define forms [ e.g.: in ...
0
votes
0answers
36 views
Duplicate code in DCI model and use case
I'm just coming in to an application that's already built with a DCI architecture. I've discovered in trying to implement a feature that there is duplicate code in a use case and a model. This is not ...