What are the general guideline today for structuring a 3-tier application in Visual Studio 2010 with C#?
- Create blank Solution
- Create a class library to hold data sets
- Create a class library to hold data entity
- Create a class library to hold the business logic
- Create a class library to hold user interface (WPF or windows forms)
Is this correct?