final update
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
namespace LOC.Core.DependencyResolution
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web.Mvc;
|
||||
using StructureMap;
|
||||
|
||||
public class SmDependencyResolver : IDependencyResolver
|
||||
{
|
||||
private readonly IContainer _container;
|
||||
|
||||
public SmDependencyResolver(IContainer container)
|
||||
{
|
||||
_container = container;
|
||||
}
|
||||
|
||||
public object GetService(Type serviceType)
|
||||
{
|
||||
if (serviceType == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
return serviceType.IsAbstract || serviceType.IsInterface
|
||||
? _container.TryGetInstance(serviceType)
|
||||
: _container.GetInstance(serviceType);
|
||||
}
|
||||
catch
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<object> GetServices(Type serviceType)
|
||||
{
|
||||
return _container.GetAllInstances(serviceType).Cast<object>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user