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).
0
votes
0answers
42 views
How to consume correctly a business layer in asp.net MVC with pure ado.net
Consider the following scenario:
DAL - Using pure ado.net (I dont like EF...)
Repository - Actually a poor implementation of Repository pattern, will query DAL
Business logic layer - Call ...
0
votes
1answer
31 views
Appropriate way for business logic layer to deal with its neighbors?
Good morning, i have a use-case in my project that says that If the user isn't logged in to the application display a warning message to him and what determines if the user is logged in or not is a ...
1
vote
1answer
71 views
Linq to Sql- Can I build an generic Action of Update?
For each of my tables there is the Key value so my question is how can I get the Key property?
I want to search that object I got in the paramater and update the table through this updated object. how ...
0
votes
1answer
116 views
How to retrieve data from the datastore on Android device, using Google App Engine with Cloud Endpoints?
I am building an Android Application using Google App Engine with Cloud Endpoints. I carefully followed this tutorial (https://developers.google.com/eclipse/docs/endpoints-addentities), thus I managed ...
1
vote
1answer
98 views
The N-layers paradigm - is this concept wrong?
I just saw the lecture:
Breaking apart conceptions
He keeps saying that the 3 layers paradigm started because of the problem with connection pooling.
And NOT because of architectural ...
1
vote
2answers
160 views
Linq To Sql - Making a dynamic search for the Application layer without exposing DAL layer as DLL
Linq to SQL, C#.
I have 3 layers: DAL,BL,Application.
I want to build functions of search in the BL for each table so those functions get as a parameter 'where' expresstion from the Application ...
0
votes
1answer
40 views
Application Services referred as containing Business Logic
I have a question that twisted me over the last months. Some of the writers and persons (I would not say all of them) are associating the Business Logic with Application Services . According to what ...
1
vote
1answer
34 views
Substitute Models from MVC with existing Data and/or Business Layer?
The thing is that i would like to transfer some of our small WinForms applications to ASP.NET
I have the Data Access Layer dlls and the Business Layer Dlls.
Is it a good practice to substitute the ...
1
vote
3answers
130 views
Passing Business Objects from a WCF Operation (service Layer to Data Layer)
I am building a WCF service.
The Data Contract objects will be the exact same as the Business Objects.
Should I create Data Contracts in my WCF service or reference my BO Layer and use those ...
0
votes
1answer
65 views
Passing an interface to a base class by reference
I'm creating an application that has numerous business entities. I'd like to make sure that every time one is modified, I timestamp the record accordingly and place the creating/modifying user. I ...
0
votes
0answers
29 views
Business class invokes repository and service agent
My Business layer needs to get data from repository and web service. I've created a service agent to encapsulate communication with the web service.
1) Is it good idea to inject the service agent to ...
1
vote
1answer
120 views
N-Layer Architecture in C#
I'm trying to implement N-layer architecture to my project first time.
I created BLL, DAL and GUI
Here is in GUI
XmlSettingsBLL xmlSettings = new XmlSettingsBLL();
var newDict = new ...
3
votes
2answers
127 views
Passing business entities through layers in multi layer architecture
Currently I'm working on a project exploiting multi layer architecture as described in Application Architecture Guide 2.0 with 5 layers(DAL, BLL, Facade, Presentation Layer and Common Layer).
Here we ...
1
vote
0answers
52 views
Can we use DAOs directly in controller instead of business layer objects?
I am not just getting one thing.. I am working on some internal project.. (java/spring/hibernate). Iam using dao layer, presentaion layer.. Is that necessary to use Business layer in my app?
The ...
0
votes
2answers
348 views
Generic DAL / BLL Classes
I'm currently building the Data Access Layer and Business Logic Layer classes for our new application, and I have a question (obviously). First, here are some details that may help:
Using Entity ...
1
vote
3answers
147 views
Why is it that Rails applications aren't split up and business logic moved into gems? [closed]
In ASP.NET MVC applications and Java web applications, there's a common practice of keeping business logic in a separate package/dll and treating things like the database and delivery mechanisms (web ...
1
vote
0answers
56 views
How many UnitsOfWork and Repositories do I need and how do I couple them to the underlying storage?
Let's consider the following situation. I want to create a WCF service which exposes some methods for business domain specific operations.
I have no idea yet, what and how many underlying storage ...
0
votes
2answers
126 views
Web services and Class object
I am just wondering in how to use Web Services with class object .I have class object in my BOL like Customer, Task, Project and etc. I use ADO.net to connect to data layer I'm just start using Web ...
2
votes
1answer
207 views
How to implement good practise of Business Logic Layer in Real Life asp.net
I usually create dataset as DAL, and BLL INSIDE the original project.
After I learned Entity Framework, I know that business logic layer are commonly created in separated project(class library).
...
1
vote
1answer
56 views
In MVP can the model be shared by the BLL
I read the following really good and informative article on MVP: MVP Building from scratch.
Referring to the below architecture diagram (taken from the post):
i wanted to know if the model classes ...
1
vote
0answers
165 views
DataBase + Hibernate + Spring/RESTful APi [closed]
I want to make a safe database that can connect with website + android device
I've made a MySQL database and generated classes and objects in Java using Hibernate. The next thing i want to do is to ...
2
votes
2answers
269 views
One Data Access Layer serving multiple Business Layers? or not?
I have (or will have) one DAL containing my data access methods of our ERP system.
Business-wise there are contexts that will use this DAL. Examples are: Barcode applications, custom sales picking ...
0
votes
1answer
188 views
Presentation, Service and DAO layers relationships
I have thought a lot about this question, but couldn't found some clear answer on this:
As I've understood at the last time, business layer should works only with model objects. It shouldn't know ...
4
votes
1answer
98 views
EF4 complex Select(): Return IEnumerable or IEnumerable<MyCustomDto> from Business Tier?
I've started a new job in which we're migrating a reasonably large VB.NET 2.0 app (with datasets) to C# 4.5 (with EF4.)
From our business layer, our "Search" functions are now returning IEnumerables ...
0
votes
1answer
173 views
business service calls multiple methods on the Data Access Layer each opening a connection
I am doing this pseudo-code in my unitservice which is calling 2 methods of the UnitDataProvider class.
var units = dataProvider.GetChildrenUnits(parentId);
unit.HierarchyIndex = units.Where( u => ...
0
votes
1answer
205 views
How to access DataSet From BLL in c#
I'm sorry for the question, but I'm new with the BLL :(
I have my DAL with a dsUsers.xsd created.
Now I'm trying to develop the BLL for UserBLL,
I realized that in some examples on the web, they ...
24
votes
6answers
2k views
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. This code is confusing and after a certain time, I cease to understand what is really happening.
That's what ...
1
vote
1answer
258 views
MVC with EF solution design in large projects
I can use default design of MVC solution. For example, controller:
public class ProductController : Controller
{
private Entities db = new Entities();
public ViewResult Details( int ...
0
votes
2answers
114 views
business layer or presentation layer
I am writing an ntier website which contains a table of information. I am using jeditable to make the table editable.
The client wants some fields in the table readonly depending on whether the ...
2
votes
3answers
2k views
Entity Framework DAL, BLL with Repository Pattern
I am trying to build a three tier architecture with UI, BLL, and DAL. I am using the Entity Framework with the repository pattern.
My question is: Are the Entities generated by the Entity Framework ...
2
votes
4answers
870 views
Should Business Logic Layer access the DB/Data Access Layer?
I'm a bit confused about the relationship a BLL and DAL has. Should the BLL encapsulate the DAL via dependancy injection? Or should the BLL only act on domain objects and the DAL save/update ...
0
votes
1answer
126 views
How to model core business logic and specializations for multiple applications?
I've got a bit of a complex scenario that I'm stuck on trying to determine a good model for. The basic idea is that I have a business logic layer that is shared by multiple applications that work in ...
0
votes
1answer
204 views
How to add parameters and execute a generic IDbCommand
Here is my problem in detail.
I have created a data access layer class that allows me to create most of objects I needed to communicate with databases (Odbc, OleDb and SqlClient). I also have created ...
0
votes
1answer
50 views
Data validation in software
Should the data validation be in the application/business layer or should it part of the data access layer-acting as a gateway to what goes into the data store?
2
votes
6answers
3k views
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)
layer 3: entity framework (contains: repository/data ...
0
votes
1answer
89 views
business logic should be in viewmodel or it sh ould be in seperate processor classes for asp.net mvc architecture?
I worked on many architectures for asp.net mvc which includes N-Tier, Interface repository + MVC design pattern.
Somewhere I exposed my entities directly over UI. Somewhere I exposed domain model ...
1
vote
1answer
140 views
Where are micro orm tools positioned in the application architecture
Simple statements like this: "Select x,y,z From Customer" are in the Data Access Layer.
If there would be logic in the query like filtering for customers from a certain city I would have to put the ...
0
votes
0answers
215 views
Where to draw the line between business logic and data access layer logic
The below Select statement lives in my data access layer a c# class:
SELECT PreCondition, TestInstruction, ExpectedResult, ErrorText, TestState, TS.TeststepId, TS.CreatedAt FROM Unit U INNER JOIN ...
2
votes
2answers
147 views
Does “Save” method belong to the Business Domain Entity?
I am not using any ORM. So I am having a debate whether "Save" method actually belongs to a Business Domain entity or should be abstracted in some service that will be handed over the Business Domain ...
0
votes
1answer
68 views
How should I retrieve the logged in User from session and pass it to my Business Layer?
I use JSF, Hibernate and CDI with Weld. My application is divided in: View (xhtml), Control (Request/Session/View scoped Beans), Model (Entities) and Business (BO's marked as Application scoped ...
0
votes
1answer
215 views
Exception handling with WCF plus Business Logic Layer scenario
My services simply call BusinessLogicLayer methods where entire business logic is put. I want to know what's the best practice for handling exceptions raised by BL?(not only fatal exceptions, also ...
0
votes
0answers
229 views
I don't quite understand the difference between business processes and business rules
From:
Business rules describe the operations, definitions and constraints
that apply to an organization. Business rules tell an organization
what it can do in detail
From:
A business ...
0
votes
0answers
37 views
Can non-domain BLL classes also implement domain specific business rules and processes?
Msdn
Domain Services represent operations, actions, or business processes;
and provide functionality that refers to other objects in the domain
model. At times, certain functionality or an ...
0
votes
1answer
223 views
WCF as Business Logic
My Current Architecture Plan for my Application is
UI -> WCF Bal -> Generic Dal -> Entity Model
I have created generic Dal methods and the related entity and the specific operation to be performed ...
-1
votes
3answers
136 views
gridview not showing values via BLL?
My control doesnt return the values in my gridview.
table adapter runs the query fine and displays the data.
Here is my code from the control:
categoriesBLL categoriesLogic = new categoriesBLL();
...
1
vote
1answer
134 views
Should I be using Data Access and Business Logic inside my BLL class when using Linq To SQL
I am using ASP.NET Web Forms/C#.
I researched about implementing BLL and DLL in my application.
I found out that many say that using Linq To SQL replaces DAL itself.
So you should be accessing Data ...
0
votes
1answer
291 views
Moving a function from code behind to Business Logic Layer Class
I am using ASP.NET Web Forms/C#.
I am having this function in my code behind which fills Cities DropDownList based on the State DropDownList selection.
Here is my function.
public void CityFill(int ...
1
vote
2answers
286 views
Should I use this function in my code behind or BusinessLogic Class
I am using ASP.NET Web Forms/C#.
I am using this function to fill City DropDownLists based on the selected state from State DropDownList.There are 3 DropDownLists for State and ...
1
vote
1answer
123 views
Inheritance in business entities: accessing and displaying subclass attributes when requesting base class type from data access layer
(Please keep in mind I'm a relatively inexperienced programmer. I'm aware that this question can be viewed as too open ended because there are so many philosophies on inheritance in OOP. This question ...
0
votes
2answers
81 views
How do you deal with Service methods on 2 very similar sql tables
I have 2 sql tables which are very similar. Only the Foreign Key is different for each table.
TemplateUnit table:
Id (PK)
ParentId
Name
TemplateId (FK)
TestplanUnit table:
Id (PK)
ParentId
Name
...



