Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Tiered Architecture

0.00/5 (No votes)
16 Jun 2010 1  
3 - Tier Architecture is like following : 1. Presentation Layer2. Business Logic Layer /Data Manager Layer3. Data Access Layer The

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

3 - Tier Architecture is like following :

1. Presentation Layer

2. Business Logic Layer /Data Manager Layer

3. Data Access Layer 

The communication between all these layers need to be done using Business Entities.

1. Presentation Layer is the one where the UI comes into picture. Presentation layer contains pages like .aspx or windows form where data is presented to the user or input is taken from the user.

2. Business Logic Layer is the one where all business logic are implemented. It contains business logic, validations or calculations related with the data, if needed.

3. Data Access Layer is the one which communicates directly to the database. DAL contains methods that helps business layer to connect the data and perform required action, might be returning data or manipulating data

 

Data from one layer to other needs to be transformed using Entities.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here