3
I was talking to a college roommate and he said something about application in 3 layers, I thought of something like MVC and researching a little more, really this application in 3 layers looks like MVC in some concepts.
Since:
MVC
Model (Dados)
View(interface)
Controller(Business)
3 layers
UI()
BLL(Business)
DAL(Data)
Since it has returned me some doubts:
What is the real difference of each, since both separate the project so that it is more cohesive and easy to work ?
What are the particularities that this 3 layer application has?
An application created in MVC, if created in 3 layers would have the same result ?