/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($project_id, $member_id)
 {
     #dd($member_id);
     return $this->service->show($project_id, $member_id);
 }
 /**
  * Display the specified resource
  *
  * @param int $id
  * @param int $idTask
  * @return Response
  */
 public function show($id, $idProjectMember)
 {
     return $this->service->show($idProjectMember);
 }