Removed IHistoryProvider.

This commit is contained in:
Mark McDowall 2011-04-08 16:58:46 -07:00
parent c25af5978d
commit 0d95302aee
6 changed files with 16 additions and 36 deletions

View file

@ -12,9 +12,9 @@ namespace NzbDrone.Web.Controllers
{
public class HistoryController : Controller
{
private IHistoryProvider _historyProvider;
private HistoryProvider _historyProvider;
public HistoryController(IHistoryProvider historyProvider)
public HistoryController(HistoryProvider historyProvider)
{
_historyProvider = historyProvider;
}