Ejemplo n.º 1
0
 public function Delete($blackoutId, $updateScope)
 {
     if ($updateScope == SeriesUpdateScope::FullSeries) {
         $this->blackoutRepository->DeleteSeries($blackoutId);
     } else {
         $this->blackoutRepository->Delete($blackoutId);
     }
 }