What should layers in dotnet application ?

Posted by haansi on Stack Overflow See other posts from Stack Overflow or by haansi
Published on 2010-04-19T07:20:06Z Indexed on 2010/05/05 6:08 UTC
Read the original article Hit count: 146

I am using layered architecture in dotnet (mostly I work on web projects). I am confuse what layers should I use ?

I have small idea that there should be the following layers.

  1. user interface
  2. customer types (custom entities)
  3. business logic layer
  4. data access layer

My purpose is sure quality of work and maximum re-usability of code.

some one suggested to add common types layer in it. Please guide me what should be layers ? and in each layer what part should go ?

© Stack Overflow or respective owner

Related posts about architecture

Related posts about c#