Repository Design Pattern : Implementing Generics, MOQ, MSTEST In ASP.NET MVC

Repository Design Pattern : Implementing Generics, MOQ, MSTEST  In ASP.NET MVC
Repository Design Pattern is a way to encapsulate repetitive data access code. Repository Pattern is effective data access design pattern when we want to: Increase testability of the application. Make test repeatable without touching the data source;...

Code Review : A Simple Guide

Code Review : A Simple Guide
What is a Code Review? A.KA. – Code Analysis Review. It is an ongoing process to allow developers to improve code quality.  This is defining moment where they can spot code smells, serious vulnerabilities and be able to  promote readability,...

Asp.Net MVC and CSS : How to keep the footer stay at the bottom without breaking BootStrap features

Asp.Net MVC and CSS : How to keep the footer stay at the bottom without breaking BootStrap features
By default asp.net mvc provides footer but the problem is it does stay at the bottom of the page. There's a solution provided by BootStrap but it is sticky. We want something that is relative to the page. The solution presented here is compatible in...

Object Oriented Programming Concepts

Object Oriented Programming Concepts
OOP is a programming paradigm that represents the concept of "objects" that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with...
Page 1 of 512345Next »