public static function toEntity(ResponsableDTO $responsableDTO)
 {
     $responsable = new Responsable();
     $responsable->setId($responsableDTO->getId());
     $responsable->setResponsableFacultad($responsableDTO->getResponsableFacultad());
     $responsable->setResponsableAsignatura($responsableDTO->getResponsableAsignatura());
     $responsable->setResponsablePersona($responsableDTO->getResponsablePersona());
     return $responsable;
 }