Question

This is my project structure in visual studio. Folders are indicated with a - and files with an *.

Project.Core
- Customer
 - FinancialProcessing
   - RiskAssesors
     * IRiskAssesor
     * HighRiskAssesor
     * LowRiskAssesor

Is it better (i.e. common practice, more convenient, less confusing) to put the interface in the FinancialProcessing folder than inside the RiskAssesors folder? What do you guys do?

Was it helpful?

Solution

I keep the interfaces in the same folder as the class that uses it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top