TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About business logic
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (2)
Sourav Kayal (2)
John Charles Olamendy (2)
Mohamed Azarudeen Z (1)
Munib Butt (1)
Saineshwar Bageri (1)
Rohini Parade (1)
Prashant Nimbare (1)
Ashish Bhatnagar (1)
David Mccarter (1)
Balakrushna Swain (1)
Nazimuddin Tajuddin Basha (1)
Zach Smith (1)
Related resources for business logic
No resource found
After Business Rules in ServiceNow: Scenarios and Best Practices
7/22/2024 3:49:40 AM.
After Business Rules in ServiceNow execute after a database operation, enabling actions that depend on the successful completion of the initial operation. Common scenarios include audit logging, trigg
Building a .NET Desktop Application
6/7/2024 10:30:03 AM.
Learn to develop a .NET desktop application with SQL Server data storage, employing a structured approach involving data access, business logic, and presentation layers. Utilize Visual Studio 2019, S
Dependency Injection Using Microsoft Unity Framework
6/5/2024 5:30:32 AM.
Explore Dependency Injection with Microsoft Unity Framework in the C# console app, emphasizing SOLID principles, IoC, and DI implementation for loosely coupled layers, enhancing testability.
Understanding the Layers of Database Management Systems
4/21/2024 2:29:09 PM.
Unlocking the Power of Three-Tier Architecture: A Comprehensive Guide to Understanding and Implementing Database Management Systems. Dive deep into the layers of presentation, application, and data ma
Model in ASP.Net MVC : Part 1
4/2/2024 9:15:36 AM.
The Model in MVC encapsulates application logic, excluding view and controller logic. It manages data and performs operations. This article guides through creating and utilizing a Model class in an MV
API Development Using Strategy Design Pattern with 3-Tier Architecture
11/13/2023 6:36:52 AM.
In today's fast-paced software development landscape, creating well-structured and maintainable applications is crucial. One popular design pattern that can greatly enhance the organization and fl
ASP.NET Core Web API Development with Observer Design Pattern
11/1/2023 7:55:20 AM.
This project represents a robust ASP.NET Core Web API application that manages tickets using a 3-tier architecture. The system provides full CRUD (Create, Read, Update, Delete) functionality for ticke
Pass Data in Layered Architecture: Part-2: Non Uniform Style
4/2/2021 10:32:37 AM.
This article explains how to transfer data in a non-uniform fashion.
Pass Data in Layered Architecture: Part-1: Uniformly Using Entity Class
2/25/2021 8:52:26 AM.
This article explains how to pass data across layers in a uniform fashion using an entity class.
Model And View Components In Struts
8/7/2020 7:58:07 AM.
In any MVC based application , a Model component typically is one of the most important components as it implements the core business logic and the data access functionality. They resemble real-life
OOP - Encapsulating Business Logic In Class Properties
7/24/2020 11:33:25 AM.
In this article, you will learn about OOP - Encapsulating business logic in Class Properties.
ADO .NET Evolution: Part II: 2-Tier to 3-Tier
1/29/2015 4:01:39 AM.
Implementation and example of a 3-Tier Application.
How to Architect an Application
10/30/2013 12:10:46 PM.
In this article let’s get into the business of how to architect an application.
Model View Presenter (MVP) design pattern and data binding
9/29/2012 7:13:17 AM.
Model View Presenter (MVP) design pattern is the evolution of the MVC design pattern and it’s aimed at providing a cleaner separation of concerns between the view, the model, and the controller improving the architecture (you can use several UI technologies without recompiling the business logic components) and testability of the enterprise solution. The pattern was originally developed at Taligent in the 1990s. In this article, I will explain the principles and how to use the MVP design pattern along with data binding with an example using C# language in Microsoft.NET.
Calling External Assemblies From Orchestrations
5/15/2012 2:08:30 PM.
In this article, I will cover how to call business logic contained in external assemblies from orchestration in order to reuse this component's logic. For the solution, I will create a library with a component which implements the string concatenation logic. Then this assembly will be referenced from an orchestration and the underlying method will be invoked.
Using Reflection to dynamically expose your Business Logic through a Webservice.
1/30/2007 4:38:21 AM.
Many people are using web services to communicate with their business logic. There are many advantages of this approach with some issues. This article will show you how you can avoid those issues, while still enjoying all the benefits of using web services.