Business logic is the abstract thought process behind decision making in human transactions. Translation of business logic into code is one of the major tasks in producing business software.
Questions tagged [business-logic]
626 questions
0
votes
2 answers
Pointers towards developing a quick and dirty business app
Some people have approached me lately about creating a business app for them (I'm a computer tech student specializing in programming, with a bit of experience in systems and driver programming) and it does sound simple, but I don't really have much…

neohaven
- 83
- 8
0
votes
1 answer
What is "data-intensive business logic" in the context of Java stored procedures?
I'm reading an Oracle book, which states:
Java stored procedures are, of course, written using Java, and they facilitate the implementation of data-intensive business logic using Java.
What is "data-intensive business logic"? Would OLAP be an…

lovespring
- 19,051
- 42
- 103
- 153
0
votes
1 answer
Are there times when combining business logic and data structures is a good idea?
I've recently been told that if programming a data structure that--for the time being--will only need one type of business logic, I should build all the logic directly into the class and only worry about moving it into a separate class when the…

Josh
- 632
- 7
- 13
0
votes
1 answer
DAL framework used by many programs on multiple computers
In our project, we have many small programs spread across multiple computers, each responsible for a specific tasks against the legacy database. Today, they are written in Fortran 77 and uses a very outdated framework for database access.
We are…

magol
- 6,135
- 17
- 65
- 120
0
votes
1 answer
Logic Implemention: Determining availability by resource type, when a resource can belong to multiple types
Consider a hotel which has multiple room types (e.g. single, double, twin, family), and multiple rooms. Each room can be a combination of room types (e.g. one particular room can be a double/twin room).
The problem I'm facing is how to determine…

JamShady
- 2,914
- 1
- 21
- 22
0
votes
2 answers
Business logic class, using a dictionary instead of properties
I have a business logic class, which holds all the data of an user. The class should be able to insert/fetch/update/delete the user from a mysql database.
I started creating all the properties like username,password,email, etc... but the I…

Ramy Al Zuhouri
- 21,580
- 26
- 105
- 187
0
votes
1 answer
Table Module / Table Gateway - Where to put code for loading from gateways?
Not sure if there is a "correct" answer to this, so I've flagged it as community wiki. Apologies for the long pre-amble.
I am building a modestly sized web application in .Net, and have settled on a table based architecture. My DAL layer consists of…

rob
- 1,154
- 2
- 12
- 18
0
votes
5 answers
What are the best practices in creating a data access layer for an object that has a reference to another object?
(sorry for my English)
For example, in my DAL,I have an AuthorDB object, that has a Name
and a BookDB object, that has a Title and an IdAuthor.
Now, if I want to show all the books with their corresponding author's name, I have to get a collection…
Roger
0
votes
1 answer
Architecture Tips: Business Logic / Data Access
We plan to redesign, improve our (C#) application architecture.
Anyone has some framework, hompage or book recommendations?
Mainly concerning the business logic.

ravicini
- 21
- 1
- 4
0
votes
2 answers
What are essential framework services for a mid-sized company?
I create .NET applications for a mid-sized manufacturing company. I would like to create a number of "framework" web services that can be employed by most of my applications.
What web services have you found to be useful for reuse within such an…

Feckmore
- 4,322
- 6
- 43
- 51
0
votes
1 answer
Average pricing implementation in a POS application?
I am developing a POS (Point of Sale) application which should be able to calculate average price. Here is the deal, i don't know what it is and how it is calculated for consumer products. I just got this requirement. All i know is this, that there…

Xience
- 351
- 2
- 8
- 22
0
votes
1 answer
C# Entity Framework and Business Logic
I have a database and I'm accessing it via EF.
public partial class Project
{
public int ProjectID { get; set; }
public string Name { get; set; }
public virtual ICollection ProjectAssets { get; set; }
}
public partial…

Towelie
- 99
- 2
- 10
0
votes
0 answers
business logic in stored procedure
although i dont have much experience, but in terms of organization and logical thinking i am a big fan of putting bussiness logic just in BLL layer and against putting any business logic in stored procedures.
i am starting a new project now and not…

Sisyphus
- 900
- 12
- 32
0
votes
1 answer
Business logic and services
In a three-tier/multitier architecture (UI/Logic/DAO/Domain model), can services be considered as belonging to the business logic layer or are they situated as something separate ?

James P.
- 19,313
- 27
- 97
- 155
0
votes
1 answer
How to simplify complicate conditional statement by Math knowledge
I have a complicated business logic and I believe boolean algebra that sort of things should have the ability to simplify the logic. Can anyone tell me how to do it by solving the following problem?
The problem comes from a game X3: Reunion. Here is…

Gqqnbig
- 5,845
- 10
- 45
- 86