Hi,
Yes, there are such patterns. Consider the Strategy pattern, for example.
Template Method can also be helpful.
> Hi,
> I'm not an expect in .NET, so would anyone know an answer a design
[quoted text clipped - 12 lines]
>
> Thanks!
pitachu@gmail.com - 31 Jan 2006 18:36 GMT
Hi Dmytro,
Basically, the STANDARD version of this program should provide X number
of functionalities.
Customer A might like the standard version and would have all of X
number of functionalties, while Customer B will only need (X - N)
number of functionalities. But what happens in the case when Customer C
don't like just 1 or 2 of these functionalties and want us to replace
it with a modified version of functionalites? How could I just update
these "pluggable" modules so that everything else stays the same,
except those 2 functionalities? Or what if I want to add 3 NEW
functionalities in addition to this X number of standard
functionalities?
Is the Strategy pattern suitable for that?