Tagged Questions

4
votes
3answers
59 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 …
2
votes
2answers
42 views

Business logic/rules - processing in the database or in memory

because of my over abundance of hubris, I am working on a program that would process some of the data better than the current system we are currently using. My question is when the …
1
vote
4answers
76 views

Can we use Extension Methods for building business rule engines?

I am looking to do something like this public class ProductBiz: BizBase<Product> { public List<String> BrokenRules {get;set;} // Some kind of data + biz operation im …
5
votes
7answers
727 views

Where are the Business Rules in MVC

Now that everyone is talking about MVC, I notice that the business rules are not being addressed. In the old days of the 3-tier architecture, The business rules were in the middle …
2
votes
3answers
213 views

When is a Business Rules Engine used

When is a Business Rules Engine used? What is the difference between Business Rules Engines and scripting/configuration/customization
3
votes
12answers
586 views

Should a business rule violation throw an exception?

Should a business rule violation throw an exception?
2
votes
3answers
146 views

Resources for implementing ERP and other Enterprise applications?

When developing an ERP-like software or any other complex business system, what resources do you go to for best practices? I'm a developer, not an accountant, not a purchaser, not …
3
votes
4answers
137 views

How to unit test business rules?

I need a unit test to make sure I am accumulating vacation hours properly. But vacation hours accumulate according to a business rule, if the rule changes, then the unit test break …
0
votes
1answer
68 views

Help with Business Rule

I have a nodeset that contains various number of nodes with unique values. I want the rule to fire if the nodeset contains nodes with some of the possible values. Example: Insta …
1
vote
6answers
211 views

Defining Business Rules

I have been tasked to come up with a list of the Business rules in one of our current applications. We have a very old document that has somethings, but has not been maintained, an …
3
votes
2answers
309 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) application …
1
vote
1answer
77 views

What is the proper method for coding, then retrieving business rules static error (NOT exception messages) messages in an ASP.NET web application?

I've skinned this cat a few different ways over the last 6 years.. hardcoded strings, static classes with consts, and resource files. What approach do you use, and why? Bonus poin …
6
votes
4answers
191 views

How do you share configuration information or business rules between languages

I'm looking for best practices for using the same data in different places without repeating yourself - this could include configuration or business rules. Example 1. Data validat …