Tagged Questions

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

learn more… | top users | synonyms

26
votes
4answers
1k views

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 been "What is the difference between a domain model and MVC model?" or "What is a ...
13
votes
8answers
961 views

I've never encountered a well written business layer. Any advice?

I look around and see some great snippets of code for defining rules, validation, business objects (entities) and the like, but I have to admit to having never seen a great and well-written business ...
10
votes
7answers
2k views

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 and its differences with business layer. So, we are using asp.net mvc 2 and have Data Access layer ...
10
votes
6answers
4k views

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 that will use the same database, and use the same business rules for reading and writing ...
8
votes
5answers
2k views

Entity Framework And Business Objects

I have never used the entity framework before and i would like to try some personal projects implementing it to get my feet wet. I see that entities can be exposed to the presentation layer. But i ...
8
votes
2answers
4k views

How to Design Data Transfer Objects in Business Logic Layer

DTO I'm building a Web application I would like to scale to many users. Also, I need to expose functionality to trusted third parties via Web Services. I'm using LLBLGen to generate the data access ...
8
votes
7answers
674 views

Logic: Database or Application/2 (constraints check)

This is a specific version of this question. I want to check if I am inserting a duplicate row. Should I check it programmatically in my application layer: if (exists(obj)) { throw new ...
7
votes
8answers
1k views

What exactly consists of 'Business Logic' in an application?

I have heard umpteen times that we 'should not mix business logic with other code' or statements like that. I think every single code I write (processing steps I mean) consists of logic that is ...
6
votes
3answers
58 views

Business Layer vs SQL Server

I have an application that does complex calculations for members. Each member can have multiple US states linked to their profile. Each state has got different calculations for each course a member ...
6
votes
2answers
521 views

Business Logic Classes Naming

I have a business layer that has some business objects/POCOs/entities/whatever. I also have some repositories for the data access. Up until this point, I've been accessing the repositories directly ...
6
votes
4answers
1k views

Using Entity Framework generated classes in Business Logic Layer

I have a ASP.net (C#) project that is using a three layer architecture. I started to use Entity Framework in my DAL and the question is to what extent classes generated by Entity Framework can be ...
5
votes
4answers
326 views

Separation of business logic

When I was optimizing my architecture of our applications in our website, I came to a problem that I don't know the best solution for. Now at the moment we have a small dll based on this structure: ...
5
votes
3answers
414 views

What should we have in a Business Logic Layer (BLL)

I know this is a very basic question. But I am really not able to comprehend what should we have in BLL. Let me take an example. Let us consider a Login.aspx web page, which is used to facilitate user ...
5
votes
7answers
2k views

Any suggestions for separating data access, business logic and GUI in Delphi

I want to separate data layer from business logic and business logic from GUI. Diving into web I stumbled upon a few resources but still unable to make my mind clear. Some people talk about patterns ...
4
votes
3answers
343 views

Design of Business Layer

We are currently revamping our architecture and design of application. We have just completed design of Data Access Layer which is generic in the sense that it works using XML and reflection to ...
3
votes
4answers
168 views

Where to catch exceptions

I have a WCF svc separated into a Service Layer, Business Logic Layer and Data Access Layer. When my DAL encounters an exception, should I catch it there or let it bubble back up to the Service ...
3
votes
3answers
414 views

Separating Business Rules from Business Processes

how do I externalize the business rules from the business processes so that I can add rules without touching the business process logic? For example, I have two business processes, say "Add Product" ...
3
votes
2answers
2k views

Best way to separate Business from Presentation Logic?

I want to create a game that will work both locally and online. My first thought was to create an interface that would have all the methods that will be needed by the GUI for the business logic and ...
2
votes
1answer
113 views

Application development in Go

I'm writing a web application in Go. So far I've written all base libraries I'm going to need for now and that worked out just perfect. The package structure is really handy in that aspect. Now I'm ...
2
votes
1answer
298 views

MVC using existing data- and businesslayer

I have an existing application with a datalayer (primary EF4), a businesslayer (custom code) and a windows application - now I want to create a webapplication using ASP.NET MVC but I am not sure ...
2
votes
2answers
47 views

Date Created - should this value be set in the BL or DAL?

Date Created a specific example I'm interested in - but there are other bits of data that fall into the same category: data which you'd want to capture about any vaguely important entity. Where best ...
2
votes
2answers
329 views

Business Layer structure, how do you build yours?

I am a big fan of NTiers for my development choices, of course it doesnt fit every scenario. I am currently working on a new project and I am trying to have a play with the way I normally work, and ...
2
votes
1answer
115 views

Layered Architecture Question

I am developing an piece of software where I have a few entities such as: public class Workspace { public int ID { get; set; } public string Name { get; set; } public ...
2
votes
2answers
505 views

Authentication and authorisation in an n-tiered architecture

I need to be able to tighten my business layer - access to particular data. The UI can make a call to the business layer and receive a userdetail. The UI can then call .Save() on a user and the ...
2
votes
5answers
576 views

Business Logic Layer

I am programming data driven applications using asp.net with telerik controls (v2009 q2). I have a class named BLL which contains (almost only) static classes that return different objects taking some ...
2
votes
5answers
2k views

ASP.Net 2.0 Application without Business Logic Layer?

Is it "acceptable" to have an ASP.Net 2.0 application without the BLL (Business Logic Layer) as the following? SQL Server Data Storage & Stored Procedures Data Link Layer (Strongly Typed ...
1
vote
2answers
77 views

Dapper in relation to n-Tier design (BLL/DAL)

I have a basic logical question about Dapper. In attempting to do best design practices does Dapper blur the line between DAL and BLL? Many recommendations are that the DAL should know nothing about ...
1
vote
1answer
59 views

django models = business logic + data access? Or data access layer should be separated out from django model?

In Django, the suggested software architecture is to put all business logic and data access in models. But, some colleagues have suggested that the data access layer should be separate from the ...
1
vote
2answers
120 views

Is Django bad for conveying business-logic?

I am almost 100% locked in to Django for the projects I have been planning. The final "myth" I'd like to "dispel" is that Django is "mediocre" at conveying business-logic. Direct quote by Peter ...
1
vote
5answers
86 views

WCF Service and Business Logic

I am unsure where to place my business logic. I have a WCF service which exposes its methods to my client. Should my business logic go in the service method public User GetUser(int id) { ...
1
vote
2answers
68 views

Guidelines for implementing service layer methods

We are developing an 3-tier application where presentation layer communicates with service layer, which in turn communicates with the business layer. The business layer has access to database. ...
1
vote
4answers
218 views

asp.net mvc 3 - where does the business logic go?

I am a beginner to the asp.net mvc. After reading many tutorials and digesting concepts of it, I am still to see a clear approach that clearly demonstrates where does the business logic go. My app ...
1
vote
1answer
150 views

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 a read a number of the threads here on StackOverflow on the topic and i still find myself confused ...
1
vote
1answer
104 views

CakePHP business logic layer

CakePHP doesn't seem to ever mention separating the business logic and data access layers of an app. This is my first MVC app and my "fat models" are turning out to be very fat because they contain ...
1
vote
2answers
49 views

common services in layered architecture

I read in many books that in a layered architecture a layer should only use the services provided by the layers below it. The commonly used layers are in an enterprise application are: Presentation ...
1
vote
3answers
162 views

Separating business logic dependent on web references out of presentation layer

I have a web app with a presentation layer and a business layer as individual projects. One being a web application and the other being a class library. I have added a web reference to the web ...
1
vote
4answers
108 views

Where to put business logic for two related objects?

Suppose I have two entities: User and UserGroup. They have a one-to-many relationship => each UserGroup virtually contains 0 to n number of users. If I want to retrieve the users for a UserGroup ...
1
vote
3answers
37 views

When Creating/Updating an entity, Should I Pass object to bussiness logic or object values?

When working with an entity, which of the following is recommended? (The following code is in UI Layer. UserManager is in Business Layer) 1- protected void btnReturn_Click(object sender, ...
1
vote
1answer
62 views

bussiness layer with multiple objects with all properties filled from DB or one object with only a subset filled

I am building a middle size system and I am facing a problem that probably some of you have faced before. In my business layer I return business objects with a subset of properties that are important ...
1
vote
2answers
184 views

Design considerations for realtime OPC system

We are in the process of redesigning a disjointed realtime OPC system which has proven to be cumbersome. Our technology stack is C#, .NET 4 and SQL Server 2008 R2, hosted on 32 bit Windows Server ...
1
vote
1answer
363 views

Entity Framework/Linq to sql model to business model

I'm coming from a stored procedure and creating the data access layer manually approach. I am trying to understand where I should fit Linq To SQL or entity frameworks into my normal planning. I ...
1
vote
2answers
231 views

Business Layer errors and Service Layer handling - Best way?

We're building a large web app that has numerous layers. In order to communicate to the business layer we're using a service layer that the web layer calls when data is needed. Unfortunately, it ...
1
vote
5answers
235 views

How to implement “business rules” in Rails?

What is the way to implement "business rules" in Rails? Let us say I have a car and want to sell it: car = Cars.find(24) car.sell car.sell method will check a few things: does current_user own ...
1
vote
1answer
352 views

Inheriting from entity classes and extending the class

I used Entity Framework 4.0 for creating my Data Access Layer. Then I found that my Business Logic Layer has the same objects as DAL but with some extensions (i.e, more properties, some functions, and ...
1
vote
2answers
591 views

Use of Business Layer in 3-tier architecture

I am implementing 3-tier architecture. I just wanted to know the role of business layer in 3-tier architecture. I am developing application in using entity framework. So I have entity object which is ...
1
vote
1answer
32 views

Strategies for the caller to decide data connection

Consider an existing data access and business logic layer that is used by multiple different applications and that, until now, only needed a single data connection for the lifetime of any given ...
1
vote
3answers
266 views

Should you return a BindingList from a business layer (or service layer, domain model, etc.)?

I need a BindingList in my UI to provide two-way databinding between my collection and a DataGridView. However, it doesn't seem correct to return a BindingList from your business layer (or domain ...
1
vote
1answer
181 views

Should a BLL be stateless?

I'm toying with building a BLL for my application. From what I've seen / read, it seems the BLL should be stateless. Doesn't this mean all BLL methods could be static? Or I'd at least only ever ...
1
vote
1answer
177 views

Opinion on business logic layer design for window and web based application

I need some opinions on choosing which signatures for my web based business layer function: function void CreateUser(Company UserCompany, string name...) or function void CreateUser(int CompanyID, ...
1
vote
2answers
160 views

How can I implement my existing Business Layer to a SilverLight 4.0 Application?

Lets assume that I have my own business layer containing my business objects and my business services. And I have decided to create a "SilverLight Business Application" (with SL v 4.0) and I want to ...

1 2