Top "Business-logic-layer" questions

The business logic layer (BLL) is the layer in a multi-layer software architecture which separates the business logic from other layers such as the data access layer (DAL) and user interface (UI or presentation layer).

Separation of business logic and data access in django

I am writing a project in Django and I see that 80% of the code is in the file models.py. …

python django model-view-controller data-access-layer business-logic-layer
Business Layer in 3 tier Architecture

I went for an interview, and was asked to show up my Business layer architecture. I have some idea about 3 …

n-tier-architecture 3-tier business-logic-layer
Domain objects/services and the Business Logic Layer

What are domain objects and domain services in software architecture? I am not familiar with them or how they differ …

java business-logic-layer domain-object
Where does the "business logic layer" fit in to an MVC application?

First, before anyone screams dupe, I had a hard time summarizing it in a simple title. Another title might have …

asp.net-mvc model-view-controller design-patterns business-logic-layer
Service Layer vs Business Layer in architecting web applications?

I know this might sound silly but I am finding it hard to understand the need of a service layer …

asp.net-mvc-2 architecture business-logic-layer service-layer
Service layer vs business layer - differences?

I have been doing a lot of reading on service layers and business layers and how they compare. I have …

asp.net-mvc model-view-controller architecture service-layer business-logic-layer
UI, Business Logic Layer, Data Layer and where to put web services

We are developing a web application. We want to possibly reuse the work we do here for a different application …

web-services web-applications data-access-layer business-objects business-logic-layer
How do you implement a business logic layer when using entity framework as data access layer?

Say i have 3 layers layer 1: WPF Project (contains: xaml, viewmodels, mvvm framework) layer 2: business logic layer (contains: plain c# classes) …

c# .net wpf entity-framework business-logic-layer
Business Logic Classes Naming

I have a business layer that has some business objects/POCOs/entities/whatever. I also have some repositories for the …

c# business-logic business-objects business-logic-layer