36 lines
963 B
C#
36 lines
963 B
C#
using Moq;
|
|
using Ninject;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using SportsStore.Domain.Abstract;
|
|
using SportsStore.Domain.Entities;
|
|
using SportsStore.Domain.Concrete;
|
|
|
|
namespace SportsStore.WebUI.Infrastructure
|
|
{
|
|
public class NinjectControllerFactory : DefaultControllerFactory
|
|
{
|
|
private IKernel ninjectKernel;
|
|
|
|
public NinjectControllerFactory()
|
|
{
|
|
ninjectKernel = new StandardKernel();
|
|
AddBindings();
|
|
}
|
|
|
|
protected override IController GetControllerInstance(RequestContext requestContext,
|
|
Type controllerType)
|
|
{
|
|
return controllerType == null ? null : (IController)ninjectKernel.Get(controllerType);
|
|
}
|
|
|
|
private void AddBindings()
|
|
{
|
|
ninjectKernel.Bind<IProductRepository>().To<EFProductRepository>();
|
|
}
|
|
}
|
|
} |