/**
  * @param Listing $listing
  */
 public function delete($listing)
 {
     return $this->entityManager->remove($listing);
 }
 /**
  * @param Channel $channel
  */
 public function delete(Channel $channel)
 {
     $this->entityManager->remove($channel);
 }