2021-09-08 10:17:19 +10:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using System.Web.Services.Description;
|
2021-09-08 10:37:38 +10:00
|
|
|
|
using Moq;
|
2021-09-08 10:17:19 +10:00
|
|
|
|
using Ninject;
|
2021-09-08 10:37:38 +10:00
|
|
|
|
using SportsStore.Domain.Abstract;
|
|
|
|
|
using SportsStore.Domain.Entities;
|
2021-09-08 10:17:19 +10:00
|
|
|
|
|
|
|
|
|
namespace SportsStore.WebUI.Infrastructure
|
|
|
|
|
{
|
|
|
|
|
public class NinjectDependencyResolver : IDependencyResolver
|
|
|
|
|
{
|
|
|
|
|
private IKernel kernel;
|
|
|
|
|
|
|
|
|
|
public NinjectDependencyResolver(IKernel kernelParam)
|
|
|
|
|
{
|
|
|
|
|
kernel = kernelParam;
|
|
|
|
|
AddBindings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object GetService(Type serviceType)
|
|
|
|
|
{
|
|
|
|
|
return kernel.TryGet(serviceType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<object> GetServices(Type serviceType)
|
|
|
|
|
{
|
|
|
|
|
return kernel.GetAll(serviceType);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AddBindings()
|
|
|
|
|
{
|
2021-09-08 10:37:38 +10:00
|
|
|
|
Mock<IProductRepository> mock = new Mock<IProductRepository>();
|
|
|
|
|
mock.Setup(m => m.Products).Returns(new List<Product>
|
|
|
|
|
{
|
|
|
|
|
new Product { Name = "Football", Price = 25 },
|
|
|
|
|
new Product { Name = "Surf board", Price = 179 },
|
|
|
|
|
new Product { Name = "Running shoes", Price = 95 }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
kernel.Bind<IProductRepository>().ToConstant((mock.Object));
|
2021-09-08 10:17:19 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|