2016-03-27 21:11:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-27 02:14:06 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
public interface ISeriesOrderManager
|
|
|
|
|
{
|
|
|
|
|
Task<int?> FindSeriesIndex(string orderType, string seriesName);
|
|
|
|
|
void AddParts(IEnumerable<ISeriesOrderProvider> orderProviders);
|
|
|
|
|
}
|
|
|
|
|
}
|