Tagged Questions
The business-logic tag has no wiki summary.
22
votes
23answers
7k views
Business Logic: Database or Application Layer
The age old question. Where should you put your business logic, in the database as stored procedures ( or packages ), or in the application/middle tier? And more importantly, Why?
Assume database ...
15
votes
6answers
512 views
What's a good solution for collecting business rule documentation?
I'm running into a situation, common I'm sure, where my business rule documentation is spread across emails, documentation (now out of date) and IMs. This stinks.
I can think of 2 alternatives: ...
14
votes
11answers
3k views
Arguments for/against Business Logic in stored procedures
What are the arguments for and against business logic in stored procedures?
12
votes
12answers
752 views
Why is it called 'business logic'? Where did this term come from?
I'm going through all sorts of WPF documentation, and I'm feeling unnecessarily confused. The term 'business logic' is scattered throughout it, as if everyone should know what it is.
I can see what ...
12
votes
3answers
2k views
Beginners guide to BPEL
What is BPEL? I'm looking for some nice simple examples of BPEL usage. The wikipedia page isn't too enlightening. How about a "Hello world" in BPEL? A BPEL shell? A BPEL IDE?
11
votes
4answers
2k views
Techniques for dealing with anemic domain model
I've read some of the questions regarding anemic domain models and separation of concerns. What are the best techniques for performing/attaching domain logic on anemic domain objects? At my job, we ...
9
votes
1answer
2k views
MVVM - Validation
We're trying to figure out validation in the mvvm doing validation in the business logic or model.
I've implemented the validate by exception type in our business logic - a simplified diagram can be ...
9
votes
8answers
409 views
Handling errors and feedback when performing bulk operations in a multi-tiered architecture
Let's say you have a business logic method that can perform some operation across a number of objects. Maybe you want to call a lottery number picking web service, once for each person selected from a ...
8
votes
5answers
528 views
What are Business Objects and what is Business Logic?
When reading, I keep seeing references to what they call Business Objects. I've looked up on Wikipedia and such but I keep not getting what a Business Object is.
Is there any easy explanation of what ...
8
votes
6answers
822 views
What pattern/patterns work best for developing rule/decision engine
I am working on a decision engine / rule evaluation engine. For example:
Input: Customer and all the offences done by the customer
Output: Consequences of the offences
A sample case would be:
...
8
votes
9answers
461 views
How to simplify complicated business “IF” logic?
What are the good ways to handle complicated business logic that from the first glance requires many nested if statements?
Example:
Discount Coupon. could be:
1a) Value discount
1b) Percentage ...
8
votes
14answers
724 views
Business Validation Logic Code Smell
Consider the following code:
partial class OurBusinessObject {
partial void OnOurPropertyChanged() {
if(ValidateOurProperty(this.OurProperty) == false) {
this.OurProperty = ...
7
votes
5answers
355 views
How to version dynamic business Objects/Data?
We are developing a large applications which are related to business. You can find these applications similar to some ERP, CRM, etc.
Now we have a requirement that we need all the data which are ...
7
votes
1answer
250 views
How can developers let business users define application logic?
I'm working on a new application at work, and a manager is really pushing the concept of a business rules management system (BRMS) and a workflow management system, and I'm trying to figure out the ...
7
votes
8answers
1k views
I need a simple rules engine, I think?
I need some advice on the best approach to solving this problem.
I've researched DROOLS, Java Rule Engine and a few others. All of these are powerful, and have good things about them. I don't know ...
6
votes
2answers
228 views
How to update UI from business layer?
I have a three layer application in C#. In business layer i have many threads that do same job .
I want to show the progress of each thread on UI , but i don't have the reference of presentation layer ...
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
5answers
212 views
Should the ID in the business object be read-only or not?
In my mind the ID field of a business object should be read-only (public get and private set) as by definition the ID will never change (as it uniquely identifies a record in the database).
This ...
5
votes
4answers
76 views
Application design - modifiable business rules
Am looking for some advice on the design of an application. As I'v signed an NDA I can't reveal too much about the actual business but will try to explain the requirement.
Essentially, we want to ...
5
votes
4answers
530 views
C# - Usage of transactions in business layer (SQLServer 2005+ , Oracle) - good examples
I am gonna build a service using 3-tier architecture and I am really worried about how to handle operations in a transacted way.
I know I have 2 options: IDbTransaction and TransactionScope... but I ...
5
votes
2answers
167 views
business methods in playframework contolles
Could somebody explain is it possible to have potected, pivate methods in playfamewok's contolles except:
public static void method-action-name() {}
For example if I would have method like this:
...
5
votes
3answers
152 views
Visualise a C# method logic
I have a complex C# method which contains a set of if statements which determine access rights for a user.
I am looking for a way to visualise this logic into, say, a workflow diagram or something ...
5
votes
1answer
236 views
Implement the business logic in an app server with spring
Is posible implement the business logic in an App Server remote using pojos instead of either EJB or Servlets???. The main idea is apply a model of 3 layers where the clients may be both web browsers ...
5
votes
2answers
1k views
In separate data access & business logic layer, can I use Entity framework classes in business layer?
In separate data access & business logic layer, can I use Entity framework classes in business layer?
EDIT: I don't think I will need to swap out the data access layer from my business logic in ...
5
votes
12answers
304 views
Enforcing an “end” call whenever there is a corresponding “start” call
Let's say I want to enforce a rule:
Everytime you call "StartJumping()" in your function, you must call "EndJumping()" before you return.
When a developer is writing their code, they may simply ...
5
votes
5answers
186 views
Business rules in the repository?
Let's assume that an application has all necessary business rules in the model / presentation layer and that they work fine. My question is one of whether or not redundant business rules (i.e. a span ...
5
votes
4answers
184 views
How do you track where in your code your business rules are implemented?
How do you keep track of the business rules in your application code?
Lets say we are designing an order entry system. One of the business rules might be:
If the stock level of an item drops ...
5
votes
7answers
2k views
Dynamic Business Rules in a web application
Greetings!
Working on a web based project were business rules and logic need to be customized by client. I want to do this without having to recompile the application every time we sign up a new ...
5
votes
10answers
2k views
Should Business layer of the application be able to access Session object?
Say you have 3 layers: UI, Business, Data.
Is that a sign of poor design if Business layer needs to access Sessions? Something about it doesn't feel right. Are there any guidelines to follow ...
5
votes
3answers
2k views
Best Open Source Business Rule Management System
Does anyone know of a solid free and/or open source business rule management system. The organization I work for is developing increasingly more complex (business-wise) applications and it would be ...
4
votes
3answers
159 views
Looking for tips to build “TestMaker” (Questions and Responses) application with Evaluation Engine
I'm working on a new project.
My best analogy would be a psychological evaluation test maker.
Aspect #1.
The end-business-user needs to create test questions. With question types. And possible ...
4
votes
1answer
107 views
What types of code are appropriate for the service layer?
Assume you have entities, a service layer, and repositories (with an ORM like NHibernate). The UIs interact with the service layer.
What types of code are appropriate for the service layer?
...
4
votes
2answers
429 views
What's the best way to localize non Data Annotation Errors with ASP.NET MVC 3?
With Data Annotations it's now easy to localize error messages using Resource.resx files like this for example:
public class Student
{
. . .
[Required(ErrorMessageResourceName ="Required",
...
4
votes
2answers
453 views
Where to put business logic in django
For example, Account 1--> *User --> 1 Authentication
1 account has multiple users and each user will have 1 authentication
I come from java background so what I usually do is
define these ...
4
votes
8answers
435 views
where to put the Business Logic, AppLayer o DataLayer?
After reading this post (business logic database or application layer) I still don't have the sufficient reasons to fight the "business logic in database" topic.
In my current work, there is a lot of ...
4
votes
3answers
627 views
LightSwitch: How do I place my business logic into a separate assembly?
I have no idea how to do this simple task. LightSwitch's Solution Explorer is different in the sense that it doesn't allow to add other projects such as Class Library. Even if I could add a Class ...
4
votes
1answer
83 views
How to model and track requirements towards a goal in PHP
I'm building a webapp using the Zend Framework, and I need to model logic or keep track of some logic that has to do with tracking progress towards a goal.
Let me illustrate with a sample goal.
...
4
votes
3answers
357 views
Repository, Service or Domain object - where does logic belong?
Take this simple, contrived example:
UserRepository.GetAllUsers();
UserRepository.GetUserById();
Inevitably, I will have more complex "queries", such as:
//returns users where active=true, ...
4
votes
5answers
477 views
Should i use partial classes as business layer when using entity framework?
I am working on a project using entity framework. Is it okay to use partial classes of the EF generated classes as the business layer. I am begining to think that this is how EF is intended to be ...
4
votes
1answer
370 views
.Net 4.0 Is There a Business Layer “Technology”?
I have a theoretical question about the .net framework.
As I see it Microsoft gave us bunch of technologies for different layers.
We have the ADO.NET and with the more improved Entity Framework for ...
4
votes
4answers
120 views
Modelling Business Logic with NON-Techies
The setup:
Winform/ASP.NET MVC projects.
Learning NHibernate
SQL-Server driven apps
I work with clients that have no idea how to model an application. That's what I'm for. However, we have lots of ...
4
votes
4answers
178 views
How to handle BL cache for multiple web applications?
I recently received a project that contains multiple web applications with no MVC structure. For starters I've created a library (DLL) that will contain the main Business Logic. The problem is with ...
4
votes
3answers
183 views
What sort of graph to represent this business logic decision tree?
How would I usually represent this business logic in a graph?
A is true if
B is true or
C is true
C is true if
D is true and
E is true and
F is true
X is true if
Y is true and
C is not true
...
4
votes
8answers
452 views
Where to put restrictions on entities when separating Business layer from Data Layer
I am attempting to create the the business and data layers for my big ASP.NET MVC application. As this is the first time for me attempting a project of this scale I am reading some books and trying ...
4
votes
3answers
428 views
C# business objects and collections
I'm having difficulty wrapping my head around business objects or more specifically, business object collections.
Here's a quick example of what I'm trying to do.
If I have an Incident Object, this ...
4
votes
3answers
460 views
Tax Engine Examples
We create point of sale software for the mac, and are looking to revamp our tax engine. It's pretty simple now, with taxes consisting of a name, code and rate that can be applied to every product ...
4
votes
3answers
657 views
Architecture for dynamic business rules
I am creating a payroll application in .NET. One of the requirements is that the attendance and deduction rules should be dynamic and flexible to the most extent. The user should be able to define his ...
4
votes
5answers
312 views
SMS - How to avoid Bankruptcy?
I'm coding a new website that will need users to enter their mobile phone number, the problem I'm facing is that I need to make sure that the user is in fact the owner of (or in this case, has access ...
4
votes
3answers
701 views
Re-use business logic from MVC Application (DLL) in Reporting Services
I have a business object that compiles into a DLL that handles all calculations for my system for concepts such as eligibility, etc. The object also handles the connectivity to the DB via some ...
4
votes
1answer
383 views
How do you keep view logic out of the model and business logic out of the view-model in MVVM?
I can't quite figure out how to get the view model to be notified of changes in the model without adding a bunch of UI specific stuff like INotifyProperyChanged and INotifyCollectionChanged in my ...