Dmytro Shevchenko
Dmytro Shevchenko

Reputation: 34601

Presentation layer / Public Services layer. A common term?

While defining our application architecture (which contains both web UI and external web services) we stumbled upon our inability to find a common name for the topmost layer. It is quite clear that there are DAL (data access layer) and BLL (business logic layer) in our application. On the top of BLL, there reside the UI, which is commonly called the presentation layer (e.g., http://msdn.microsoft.com/en-us/library/ff647339.aspx). But there's also a service layer, which resides on the top of BLL as well!

But a cake can't have two layers on the same level :) So please help me to find a term for that.

Upvotes: 2

Views: 655

Answers (3)

ObiWanKenobi
ObiWanKenobi

Reputation: 14902

What about Outer Layer? Top Layer? The Layer-that-shall-not-be-named?

Upvotes: 0

Jonathan Day
Jonathan Day

Reputation: 18702

Presentation Layer is the one I've heard most for the layer containing UI components.

Upvotes: 0

Oded
Oded

Reputation: 499132

The term API (Application Programming Interface) is commonly used for programming interfaces, though in this case "Service Layer" may be more appropriate and descriptive.

Layers can be side by side - nothing says they have to be one on top of another.

Upvotes: 3

Related Questions