Questions tagged [n-tier]
The n-tier tag has no summary.
92 questions
0 votes
2 answers
268 views
Relationship between monolithic architecture and n-tier
I am confused about the relationship between monolithic and n-tier architecture (I have only analyzed 1, 2, 3 levels and tiers). Since n-tier architecture divides the application into logical layers (...
0 votes
2 answers
258 views
3-layer / 3-tier system [closed]
Some years ago, I started using a particular architectural pattern that proved itself useful on a significant number of projects. It includes the following concepts: Presentation Layer/Tier that ...
3 votes
2 answers
299 views
In the usual "3-layer" architecture pattern, where would one best create dynamic, user-readable strings?
I've been trying to build this (principally desktop, but could eventually be turned into a cloud app) document editor program for a while and have it laid out using the broad principles of the 3-Layer ...
1 vote
2 answers
917 views
Confusion about layered architecture
Given a layered architecture consisting of presentation layer business logic layer data (access) layer and a SPA web application communicating through REST endpoints with the backend (eg Angular and ...
-1 votes
1 answer
129 views
Use two parallel instances of the same .NET assembly
I've have an n-tier .NET 4.6 internal business application. It has a business logic layer class library project that references a data access layer class library project. It's designed to decouple the ...
1 vote
1 answer
130 views
Should i create a Core library for all business applications ? or each one individual?
I was find many companies which creating entities and models for each business applications So all these apps not reusable. Now, some clients of the company for example. needs 3 kind of software. ...
0 votes
1 answer
196 views
Does reference logic belong on DAL or BL?
I have a three tier architecture API to add and remove customers. Every customer has some employees that are responsible for that customer. Those employees are located in another collection of ...
1 vote
2 answers
916 views
What are the relations between the presentation/application/data logics, client and server, and MVC?
I appreciate if someone could clarify my confusions about the following quote from Distributed Systems, by Coulouris et al: Consider the functional decomposition of a given application, as ...