If I wanted to add Ninject to the Patterns in Action project.
Then remove DataAccess. Which layer would I put it in and how?
For example, I want to remove private static readonly IAuditDao _auditDao = DataAccess.AuditDao.
Would I add Ninject in the Service layer in place of private static readonly IAuditDao _auditDao = DataAccess.AuditDao?
Or do I add Ninject in Presentation layer?
Thanks
Dennis