2
votes
Command Pattern : How to pass parameters to a command ?
Pass the person when you create the command object:
ICommand command = new DeletePersonCommand(person);
so that when you execute the command, it already knows ever …
5
votes
What are the best design patterns books you have read?
My favorites have already been mentioned above. I'll just add in Uncle Bob's Agile Principles Patterns and Practices. Not just about design patterns, but also about design principles.
…
2
votes
Categories of design patterns
CategoryPatterns on Ward's wiki contains a categorized list of patterns.
The first three are the GoF patterns
…
0
votes
Controlling access to an internal collection in c# - Pattern required
The simplest that I can think of is return a readonly version of the underlying collection if editing is no longer …
2
votes
Too many “pattern suffixes” - design smell?
I see it as a design smell - it will make me think if all those levels of abstraction are pulling enough weight.
I can't see why you wanted to name a class 'InstructionBuilderFactoryMapFact …
9
votes
What is so bad about Singletons
It is easily used (abused) as a global variable.
Classes that depend on singletons are relatively harder to unit test in isolation.
…
0
votes
Patterns to get a subset based on certain criteria (In Design)
Martin Fowler and Eric Evans's Specification Pattern (pdf) ( …
