Robert
Robert

Reputation: 3

Programming with N-tier

What are the general guideline today for structuring a 3-tier application in Visual Studio 2010 with C#?

  1. Create blank Solution
  2. Create a class library to hold data sets
  3. Create a class library to hold data entity
  4. Create a class library to hold the business logic
  5. Create a class library to hold user interface (WPF or windows forms)

Is this correct?

Upvotes: 0

Views: 115

Answers (1)

Amr Elgarhy
Amr Elgarhy

Reputation: 69002

There a lot of right ways, and based on the application it may be perfect or not good.
Your structure seams good.
But you may need to check a book like this: patterns & practices Application Architecture Guide 2.0

Upvotes: 1

Related Questions