3
votes
3answers
61 views
Design question - how atomic should a business layer method be?
This issue is technology agnostic, but I am working with C# and ASP.NET and will use this for the pseudo code. Which is the better approach, and why?
Encapsulate logging, transac …
0
votes
2answers
9 views
Users need to create dynamic rules that apply to other users access to the group
Okay so here is "in a nutshell" what I'm trying to accomplish...
Users of my application can go and create a new group. They can specify criteria about other users which they wil …
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 …
1
vote
6answers
79 views
is it good to use check constraints for business rules
Currently we are using check constraints for business rules implementation, but I want to know should we implement business rules in sql or Business logic(c# code) layer. I have se …
3
votes
6answers
114 views
Business Logic in PHP or MySQL ?
On a site with a reasonable amount of traffic , would it matter if the application/business logic is written as stored procedures ,triggers and views , instead of inside the PHP co …
2
votes
7answers
52 views
Getting rid of hard coded values when dealing with lookup tables and related business logic
Example case:
We're building a renting service, using SQL Server. Information about items that can be rented is stored in a table. Each item has a state that can be either "Avail …
0
votes
2answers
56 views
How do I prevent the repetition of business logic?
OK. So here's my simplified scenario. We have a system which handles orders for a number of clients. We want staff users to be able to view all orders and we want client user to on …
1
vote
2answers
124 views
Implementing Business Logic in 3 Tier Architecture
I have a web application I am working on and so far I have the data access layer finished. Each table has its own class that creates objects of rows of that table, so each object r …
0
votes
5answers
215 views
Using XSLT to process business rules?
A coworker of mine mentioned that one use of XSLT is processing business rules. He mentioned that there were systems that allowed users to write business rules in some kind of text …
0
votes
2answers
66 views
Pros and cons of database events
I am considering rewriting part of an application's data model update methods to include support for registering to events coming from the database. Are there any reasons why this …
2
votes
2answers
65 views
N-layered database application without using an ORM, how does the UI specify what it needs of data to display?
I'm looking for pointers and information here, I'll make this CW since I suspect it has no single one correct answer. This is for C#, hence I'll make some references to Linq below. …
1
vote
2answers
77 views
What is the best way to determine if a timestamp falls within seasonal business hours?
I want a SQL query to check if a given timestamp falls within the open hours of a business. These open hours change depending on the time of year (seasonal hours) and the business …
0
votes
0answers
64 views
Using the WF rules engine without workflow in production - implementation experiences
I'm designing an application for a type of case management system that has a big requirement for customizable, flexible business rules. I'm planning on using the WF Rules Engine wi …
10
votes
12answers
403 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 …
11
votes
6answers
172 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 …
