Questions tagged [bll]

A Business Logic Layer (BLL) is a typical software engineering artifact within a Multitier architecture.

A Business Logic Layer (BLL) is a typical software engineering artifact within a Multitier architecture. It separates the business logic from other tiers, such as the data access layer or service layer. BLL objects are typically partitioned into two categories: business process objects (those which reflect business activities, or behaviors) and business entities (those which reflect real world business objects). Business process objects are typically implemented as controllers, i.e. they contain no data elements and only expose behaviors and activities which represent business processes. Business entities typically correspond to entities in a domain model rather than a database model.

96 questions
0
votes
1 answer

GUI to Business Object Mapping VB.Net

The issue I'm currently having is mapping multiple GUI fields to object properties (i.e. Presentation layer to Business Logic Layer mapping). To be more specific, this is in VB.Net 2.0 WinForms. The nature of the solution requires us to have 4…
MunkiPhD
  • 3,636
  • 1
  • 29
  • 51
-1
votes
2 answers

MVVM & business logic Layer

I have a problem with MVVM pattern and binding collection. My ViewModel provides a collection to the View but to get this collection I use this: public BindingList BindingListCars { get; set; } public CarsVm() { BindingListVoiture =…
Kris
  • 28
  • 3
-1
votes
2 answers

How to save a null datetime to SqlServer DB? not working

VS-Studio 2012 Web Express, ASP.NET, WebForms , VB , SqlServer , WebSite application having trouble saving a NULL value for DateTime to the strongly typed ROW: Dim oRowVEHICLES As Main_TblAdap.tVEHICLESRow = odtVEHICLES.Rows(0) ' (0) is the…
John D
  • 517
  • 7
  • 22
-1
votes
2 answers

repetitive code in BuisnessLogic MVC

I'am working on a MVC solution, my DAL layer I could solve with a Repository classes, everything is working great. But in my BLL layer I have repetitive code: My Crud is the same, my fields and consructor are different. I can also have some extra…
Kris Martele
  • 29
  • 1
  • 7
-1
votes
1 answer

BLL returning the right Type of an instance

I have a class "Artikel" and there i write some Business Logic. I also have a class "tArtikel" which is a type. In my class "Artikel" I work with "tArtikel" and returns are of that type. Now when i instantiate an "Artikel" i want it to be of type…
Younes
  • 4,825
  • 4
  • 39
  • 66
-1
votes
1 answer

Is BLL absolutely necessary?

I'm new to the .Net world. I'm creating a website. It has DAL & Presentation Layer. As I mentioned earlier I'm a novice & I'm not sure how to create a BLL. So I was wondering if my current approach is fine? Will it cause any problems? Its a simple…
user1345260
  • 2,151
  • 12
  • 33
  • 42
1 2 3 4 5 6
7