What is it going here in my solution?
Posted
by
bbb
on Programmers
See other posts from Programmers
or by bbb
Published on 2013-10-20T12:12:24Z
Indexed on
2013/10/20
16:08 UTC
Read the original article
Hit count: 281
asp.net-mvc
|n-tier
I am a asp.net mvc programmer and if I want to start a project I do this:
- I make a class library named
Model
for my models. - I make a class library named
Infrastructure.Repository
for database processes - I make a class library named
Application
for business logic layer - And finally I make a MVC project for the UI.
But now some things are confusing me.
Am I using 3-tier programming? If yes so what is n-tier programming and which one is better? If no so what is 3-tier programming?
Some where I see that the tiers namings are DAL and BIZ.
Which one is correct according to the naming convention?
© Programmers or respective owner