How to inject dependencies using Ninject In ASP.NET WebForm?
I have a fair idea of using the Repository Pattern and have been attempting to "upgrade" our current way of creating ASP .Net websites. So i do the following Create a solution with a class project called DataAccessLayer and another class project called BusinessLogicLayer . Finally a 3rd project which is my ASP .Net website (a normal site). I add a dbml file to the DAL and drag a table, then in my BLL i add an interface and a class which implements this interface: My interface namespace BLL.Interfaces { interface IUser { List<User> GetAllUsers(); } } In my class namespace BLL.Services { public