I'm working in a DDD project where contains this layers's: UI, Application, Domain and Infra.
Where should live Helpers Class?
Update:
I'm talking about a Object Dumper Helper for example.
|
I'm working in a DDD project where contains this layers's: UI, Application, Domain and Infra. Where should live Helpers Class? Update: I'm talking about a Object Dumper Helper for example.
| ||||
|
feedback
|
|
It depends on what kind of helper you are talking about. If it's a Helper that format a value in a friendly display format, then it would fit better in the UI. If you are talking about a SqlServer helper, then it goes to Infra. | |||||||
feedback
|
|
Classes like Note that every .NET object already has a method for diagnostics and logging. So you may not need 'Object Dumper Helper':
| |||
|
feedback
|