/**
  * @return Illuminate\Http\JsonResponse
  */
 public function getTotalDeleted()
 {
     return $this->getJsonResponse($this->useCase->where('status', '=', self::DELETED)->count());
 }