2011-04-09 00:04:50 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public class BacklogProvider
|
|
|
|
|
{
|
|
|
|
|
//Will provide Backlog Search functionality
|
|
|
|
|
|
|
|
|
|
public virtual bool StartSearch()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2011-04-09 00:04:50 +00:00
|
|
|
|
public virtual bool StartSearch(int seriesId)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|