1
vote
5answers
62 views
Business Logic Layer
I am programming data driven applications using asp.net with telerik controls (v2009 q2).
I have a class named BLL which contains (almost only) static classes that return different …
2
votes
5answers
355 views
UI, Business Logic Layer, Data Layer and where to put web services
We are developing a web application. We want to possibly reuse the work we do here for a different application that will use the same database, and use the same business rules for …
1
vote
5answers
733 views
ASP.Net 2.0 Application without Business Logic Layer?
Is it "acceptable" to have an ASP.Net 2.0 application without the BLL (Business Logic Layer) as the following?
SQL Server Data Storage & Stored Procedures
Data Link Layer …
1
vote
1answer
41 views
Multiple class libraries in business layer, or one?
My ASP.NET application uses only 1 SQL Server 2000 database and no more than 50 tables in it. And I copied an instance of the database to run on my develop PC, so I need to switch …
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 …
6
votes
8answers
488 views
What exactly consists of ‘Business Logic’ in an application?
I have heard umpteen times that we 'should not mix business logic with other code' or statements like that. I think every single code I write (processing steps I mean) consists of …
0
votes
3answers
107 views
Separating Business Rules from Business Processes
Hi,
how do I externalize the business rules from the business processes so that I can add rules without touching the business process logic?
For example, I have two business proc …
1
vote
5answers
90 views
Windows Form Controls and LINQ; What should I return?
When working with Windows Form controls and LINQ is there a "Best Option" for how your Buisiness Layer returns the Data?
Right now I am returning DataTables so that I can then set …
0
votes
3answers
63 views
Trying to return rows between a given id and the same id + offset, where should most logic go to determine how to retrieve the data?: BLL or DAL
Hi,
In my database I have a table called ThingsInACircle. Every time a Thing is added to the ThingsInACircle, it gets added with a ThingId that is auto incremented.
Imagine the T …
6
votes
7answers
299 views
Logic: Database or Application/2 (constraints check)
This is a specific version of this question.
I want to check if I am inserting a duplicate row. Should I check it programmatically in my application layer:
if (exists(obj))
{
…
1
vote
1answer
248 views
Need advice regarding layered solution, separation of concerns, etc.
We have a layered application, or at least is in the process of transitioning to one, broken down as follows:
Interface (user-interface or application-interface, ie. webservice, …
0
votes
3answers
93 views
Books for Business Apps design and patterns
Hi,
I have recognized the fact that i do not have a clear understanding of how forms and business logic layers should be distinctly separated. Especially in business apps this is …
0
votes
1answer
289 views
NHIbernate and Security / Business Layer
I'm just starting to play around with / learn NHibernate for a personal project, and feel like I'm not "getting" something. I'm used to having apps work like this:
Presentation la …
0
votes
1answer
110 views
business classes for multilanguage database design
I have posted a question about multilanguage database design here,[]http://stackoverflow.com/questions/929410/what-is-best-practices-for-multilanguage-database-designI like Martin' …
4
votes
7answers
561 views
Any suggestions for separating data access, business logic and GUI in Delphi
I want to separate data layer from business logic and business logic from GUI. Diving into web I stumbled upon a few resources but still unable to make my mind clear. Some people t …
