Top "Business-logic" questions

Business logic is the abstract thought process behind decision making in human transactions.

Business logic in MVC

I have 2 questions: Q1. Where exactly does "business logic" lie in the MVC pattern? I am confused between Model and …

design-patterns model-view-controller business-logic business-rules
MVC: Where to put business logic?

First of all, I have seen many questions of this, but not enough reasoning behind that. If my question is …

c# asp.net-mvc model-view-controller business-logic
ASP.NET MVC - Should business logic exist in controllers?

Derik Whitaker posted an article a couple of days ago that hit a point that I've been curious about for …

asp.net-mvc design-patterns controller business-logic
cannot implicitly convert type string to char

As I know char is different from string. I give datatype char to a column status in a table. I …

c# asp.net business-logic type-conversion
Service layer and controller: who takes care of what?

In class we're now learning how to build up a Spring application, even though spring isn't directly involved, we learned …

java spring architecture business-logic
Business and application logic?

I often see the phrases 'business logic' and 'application logic' in terms of web development (I assume it also applies …

business-logic
Where to put business logic in spring mvc framework?

I don't know where to put the business logic in spring mvc because I'm new to it. I have a …

java spring-mvc business-logic
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 …

business-logic
What is domain logic?

What is domain logic? The Wikipedia page for domain logic redirects to business logic. Are they the same thing, and, …

architecture terminology business-logic
Separating UI and logic in C#

Does anyone have any advice on keeping logic out of my GUI classes? I try to use good class design …

c# user-interface business-logic code-separation