In this post you will learn to use UNITY Container to resolve dependecy in ASP.NET MVC 5 application.
Tag Archives: IOC
Inversion of Control
What is Problem? Let, there is a class called Kids.cs. Purpose of this class is to maintain name and age of kids of a particular person. Kids.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication23 { public class Kids { private int age; private string name; ContinueContinue reading “Inversion of Control”