I am new in enterprise architecture, but when I right understand, it is composed with 3 tiers. I working on school project at .net platform and I have that structure:
- Data tier - Class library with data models which are mapping to relational databas
- Business tier - Class library where I have some classes which provide functionality of application
- Presentation tier - I guess in this tier I could mvc project, but I am not sure.
When I have this structure, where I could store some WEB API or WCF? Could by right in business tier? Or can you advice me, where I found real-word example of EA with service and mvc ? Thanks
You actually have four layers:
The naming convention can be a bit different, but the idea is Separation Of Principal's. An idea that allows the service layer to perform business logic, but not be aware of the method invocation of the data layer.
So you would reference like:
So your presentation layer will reference all, so when you build your Dependency Injection Containers, you can correctly reference throughout.
You can look at this project as a sample. Of how to interact between.
Presentation:
Service Layer:
Data Layer:
You will need to look at the project, the Data Layer and Service Layer are being called via Dependency Injection, which I created an extension method for the
Startup.cs
file, but that is how they interact. If you have any questions feel free to ask, I'm in the C# chat daily.