/**
  * GET /api/v1/currencies
  * Get list of currencies
  *
  * @param Api_Dto_Currency $dto
  * @return Api_Controller_Response_Result
  */
 public function indexAction(Api_Dto_Currency $dto)
 {
     $currencies = $this->_service->findByDto($dto, $this->getLimit(), $this->_request->getOffset());
     $meta = $this->_createMeta($this->_service->countByDto($dto));
     return $this->_createResult($currencies, $meta);
 }