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
-1
votes
1 answer
Suggestion for sql scenario
I am having two columns in table
InventoryId | RevisionId
-------------------------
1 | 1
2 | 1
2 | 2
2 | 2
3 | 1
3 | 2
3 | 3
3 | 3
but from now on I want to prevent following records
2 | 2
2 | 2
3 | 3
3 …

Ankit Vaidya
- 35
- 1
- 8
-1
votes
1 answer
Can Window Service be used to have business Logic
There is requirement in project and the windows service needs to be used as subscriber of RabbitMQ (message broker).
Once the event has created, this listener windows service get the event and process the event, while processing, there are some…

Udhaya Kumar
- 9
- 1
-1
votes
1 answer
passing data within business logic layer
I am working with JDK 7.
I have all my business logic classes in com.srh.bll.businesslogic package.
I am concerned about how to return data from one business logic class to another business logic class.
For example I have 2 business logic classes…

srh
- 1,661
- 4
- 30
- 57
-1
votes
1 answer
Does Uber compensate for users?
I was wondering if Uber would strategically give a particular APP a "cut" of the fee for sending users their way.
I can't really find any documentation on the uber site to support this except this one article and another Stackflow post that says…

Omar El-Batouty
- 11
- 1
-1
votes
1 answer
Free "Business Rules" tools?
I have been tasked with capturing the Business Rules in an legacy program that my company uses a lot.
As I was about to start, I fired up Excel and started typing. It took only a very short time to realize that it would be better if there were a…

Vaccano
- 78,325
- 149
- 468
- 850
-1
votes
1 answer
How to move business logic out of Spring MVC architecture
I'm building a new Java web app using Spring MVC framework and, at the same time, i'm building a mobile app using an hybrid framework (Cordova etc...). All modules are in the same project in Intellij and I'm using Maven as repository.
I would like…

user3449772
- 749
- 1
- 14
- 27
-1
votes
2 answers
What do you think about putting business logic into a Spring interceptor/Advice?
What do you think about putting business logic into a Spring interceptor/Advice? Is it a bad practice?
Which kind of business logic would you put in an interceptor? just validations?
What I see is that business logic in an interceptor is harder to…

alderaan
- 23
- 1
- 5
-1
votes
1 answer
Adding additional piece of logic into setters?
I have a jsf piece of view as follows:

St.Antario
- 26,175
- 41
- 130
- 318
-1
votes
1 answer
Revise database design of Inventory business due fluctuation cost
I had some sort of IT backgrounds with less-more economic and management understandings and some common senses. I added some functionality to current web based system which used to control quantities of inventory over fluctuation cost.
The business…

Naoki
- 1
- 2
-1
votes
1 answer
Whether to apply business rules on C# code or save in database?
I have developed a E-commerce application which contains complex rules like catalog pricing rules etc.
I saved the rules on database. I am confused whether to calculate the rules on code or on database using stored procedures.

Incredible
- 3,495
- 8
- 49
- 77
-1
votes
3 answers
In a given Json, search for the particular given string based on key, return true if found, else false Using jQuery/Javascript
Given JSON String/object
{
"selectAll": false,
"include": {
"country_197": {
"id": "197",
"data_type": "country",
"name": "Singapore",
"desc": "",
"parent_key_id":…

Manojkumar
- 1,351
- 5
- 35
- 63
-2
votes
1 answer
Business Logic : influence on language to be use?
I have to develop a web application which has a complex business logic. I have to process lot of data and do lots of analysis to produce stats.
Currently I know of 3 language used for server side of web application :
1. python
2. php
3.…

ashmish2
- 2,885
- 8
- 40
- 54
-2
votes
1 answer
Scheduling rails emails/remainders depending on user date input
I have a setup where I would like to send automatic reminders for users if they haven't made a monthly rental payment. The landlord has the opinion to define the day of the month on which the tenant should make the payment(due_date). What I would…

Daniel
- 297
- 3
- 10
-2
votes
1 answer
Api to Business Model Conversion in MVVM
I am trying to implement MVVM structure in my new app. I have the following layers.
AViewControler
AViewModel
AManager
NetworkManager
CachingManager
ATransformer
My viewcontroller does its job perfectly fine that is rendering ui and updating views…

Swati
- 1,417
- 1
- 15
- 35
-2
votes
1 answer
Server performance - database access queries results: List<> or IEnumerable<>?
I am using the WebSocketSharp library to have a socket running on an ASP.NET server.
The server-side socket must access a database, thus it returns a collection of items.
Currently, I on the data access layer, methods return List<> types from the…

k1dev
- 631
- 5
- 14