Hi guys
I am a 3rd year information technology student. As part of my 3rd year, we have to develop a system for a company. My group is developing a "Leave taking system" for a school. I am tasked with the "Architecture of the system" and have no clue what that includes? I have used google but am not getting a consistent answer. Kindly help anyone with an explanation? We are using MVC Visual Studio 2013 and a 3 tier architecture.
thanks
Jignesh TrivediPosted Mar 16, 2015, 12:22 AM
Hi,
The three-tier architecture separates the deployment of software components into three logical layers. These layers include;
•Presentation Tier - responsible for rendering the User Interface
•Business Tier (or Logic Tier) - responsible for processing the business rules or logic
•Data Tier - responsible for interacting with the data storage system
When the MVC and three-tier approaches are brought together the View and Controller are considered the presentation tier, the Model exists in the business tier (and has access to many business and data tier modules). To a certain extent the Model could span both the business and data tiers.
Please refer
http://www.codeproject.com/Articles/841324/ASP-NET-MVC-Web-App-on-Tier-for-Beginners-Part
hope this will help you.