mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
29 lines
951 B
C#
29 lines
951 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Ninject;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class UpcomingEpisodesProvider
|
|
{
|
|
private readonly IDatabase _database;
|
|
|
|
[Inject]
|
|
public UpcomingEpisodesProvider(IDatabase database)
|
|
{
|
|
_database = database;
|
|
}
|
|
|
|
public virtual List<Episode> UpcomingEpisodes()
|
|
{
|
|
return _database.Fetch<Episode, Series>(@"SELECT * FROM Episodes
|
|
INNER JOIN Series ON Episodes.SeriesId = Series.SeriesId
|
|
WHERE Series.Monitored = 1 AND Ignored = 0 AND AirDate BETWEEN @0 AND @1"
|
|
,DateTime.Today.AddDays(-1).Date, DateTime.Today.AddDays(8).Date);
|
|
}
|
|
}
|
|
} |