/**
  * Show.
  */
 public function showAction($cID, Request $request, Session $session)
 {
     $coupon = $this->container->get('couponService')->getCouponForId($request->getParameter('cID'), $session->getLanguageId());
     return new ModelAndView(null, array('coupon' => $coupon));
 }