You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
710 B
37 lines
710 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Autofac;
|
|
using ServiceStack.Configuration;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public class AutofacIocAdapter : IContainerAdapter
|
|
{
|
|
private readonly IContainer _container;
|
|
|
|
public AutofacIocAdapter(IContainer container)
|
|
{
|
|
_container = container;
|
|
}
|
|
|
|
public T Resolve<T>()
|
|
{
|
|
return _container.Resolve<T>();
|
|
}
|
|
|
|
public T TryResolve<T>()
|
|
{
|
|
T result;
|
|
|
|
if (_container.TryResolve<T>(out result))
|
|
{
|
|
return result;
|
|
}
|
|
|
|
return default(T);
|
|
}
|
|
}
|
|
}
|