Related resources for business logic
  • Understanding the Layers of Database Management Systems4/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 14/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 Pattern11/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 Style4/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 Class2/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 Struts8/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 Properties7/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-Tier1/29/2015 4:01:39 AM. Implementation and example of a 3-Tier Application.
  • How to Architect an Application10/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 binding9/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 Orchestrations5/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.