What is Separation Of Concerns?
Views: 173
The development process has too many different responsibilities. User interface design, database processes, exception handling, and many other tasks can be examples of responsibilities. Separation Of Concerns recommends that these different responsibilities be isolated from each other and each handled within a separate component. This makes the software more sustainable...