added simple injector for dependancy management

This commit is contained in:
LukePulverenti
2013-02-22 19:24:50 -05:00
parent 107c241598
commit a2d215b6ae
16 changed files with 198 additions and 142 deletions

View File

@@ -0,0 +1,12 @@
using MediaBrowser.Controller.Library;
namespace MediaBrowser.Controller.Resolvers
{
/// <summary>
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
/// </summary>
public interface IResolutionIgnoreRule
{
bool ShouldIgnore(ItemResolveArgs args);
}
}