/**
  * Display a listing of the ConceptPropertyHistory.
  * GET|HEAD /conceptPropertyHistories
  *
  * @return Response
  */
 public function index()
 {
     $conceptPropertyHistories = $this->conceptPropertyHistoryRepository->all();
     return $this->sendResponse($conceptPropertyHistories->toArray(), "ConceptPropertyHistories retrieved successfully");
 }