SOLID Principles - What Why and How

SOLID is a set of design principles, not a design pattern. The five SOLID principles guide the structure and behavior of object-oriented design to make software more flexible, maintainable, and scalable. They don't provide concrete solutions like patterns do, but instead, they help you write better code by ensuring your classes and systems are well-structured and easier to modify or extend. [More]

Difference Between Design Patterns and Design Principles

Design patterns are specific solutions for recurring problems in software design (e.g., Repository, Singleton, Strategy). Design principles like SOLID provide general guidelines on how to write good object-oriented code that is maintainable and scalable. SOLID is not a design pattern but rather a collection of design principles that help you create better software architecture. [More]

What is the use of Interceptors in Angular

Interceptors in Angular provide a mechanism to modify or handle HTTP requests and responses globally. They are a versatile tool that helps you implement cross-cutting concerns like authentication, logging, error handling, and caching efficiently. Would you like more details on a specific use case of Angular interceptors, or perhaps a code example tailored to your project? [More]

Super Funda of OOPs in C# - Part 1

C# Language is an Object Oriented Programming model language from Microsoft which is evolving with day by day. It is a leading programming language in Microsoft stacks. As per the standard guidelines of this language, it behaves in following manner while making a type(class) ready to work - (1) Default initialization:(2) Default inheritance and (3) Default constructor [More]

Dynamics 365 Business Central (Dynamics NAV)

This article is intended to highlight the key points relating to Dynamics 365 Business Central (the new SaaS version of Dynamics NAV since 2018). Let's explore with General aspects as well as Technical aspects of Dynamics NAV one by one. [More]

Starting with Events in WPF and MVVM pattern using PRISM library

This article is written to address beginners who want to know how to start with events in MVVM. This article covers the click event for the explanation. Through the given small bullet steps in this article, a novice programmer can easily understand the flow-mechanism by seeing where and how to write the event handling related code part. There are a lot of frameworks available with WPF like Gala Soft, PRISM and so on; in this article explanation, PRISM framework has been used in WPF MVVM. [More]