top of page
Search
The Tech Platform
May 13, 2023
Observer Design Pattern in C#
The Observer Pattern is a fundamental design pattern in C# that facilitates communication and coordination between objects. It enables...
The Tech Platform
Jun 20, 2022
The Factory Design Pattern
The Factory design pattern is a creational design pattern that provides an interface for creating objects in a superclass but allows...
The Tech Platform
Dec 27, 2021
How to create Singleton for a class without modifying in C#
When I ask people to create singleton class they would happily create with following implementation. class SecuritySingleton { public...
The Tech Platform
Dec 20, 2021
Microservice Data Management when performing Queries between Services
In this section, we will explore how to effectively perform queries across microservice and discover the patterns and practices that...
The Tech Platform
Nov 26, 2021
Adapter Design Pattern in the real word
The Adapter Design Pattern is a structural design pattern that allows objects with incompatible interfaces to collaborate. It acts as a...
The Tech Platform
Nov 12, 2021
CQRS vs Classical n-layer application
When building an API the typical practice is to divide it into parts, simplest would be presentation, service / business logic and data...
The Tech Platform
Oct 6, 2021
Gateway Aggregation Pattern
Gateway Aggregation pattern is similar with Gateway Routing but extra it is offering aggregation of services. Basically Gateway...
The Tech Platform
Oct 4, 2021
Microservice Architecture Patterns and Principles
Managing a database in a microservices architecture can be a significant challenge. In order to tackle this challenge effectively, it is...
The Tech Platform
Jul 8, 2021
Strategy Pattern Implementation with Typescript and Angular
Design patterns are proven, practical, and reusable solutions fit for tackling specific problems in software development. They not only...
bottom of page