Beispiel #1
0
 public bool AllSeasonsAlreadyRequested()
 {
     return(Seasons.OfType <NormalTvSeason>().All(x => x.IsRequested));
 }
Beispiel #2
0
 public bool AllSeasonsAvailable()
 {
     return(Seasons.OfType <NormalTvSeason>().All(x => x.IsAvailable));
 }
Beispiel #3
0
 public bool AllSeasonsFullyRequested()
 {
     return(Seasons.OfType <NormalTvSeason>().All(x => x.IsRequested == RequestedState.Full));
 }