[#67] SearchViewModel에 작성되어 있던 승하차 정류장 설정 및 남은 정류장 수 계산 로직 분리 #87
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📝 작업 내용
기존
BusSearchViewModel
은 CSV 파일 읽기 / 버스 검색 / 승하차 정류장 설정 / 남은 정류장 수 계산 등 여러 기능을 포함하고 있어, 이름과 역할이 맞지 않는 부분이 있었습니다.이에 따라
BusSearchViewModel
에서는 검색 관련 작업만 수행하도록 하고, 불필요한 로직들을 분리했습니다.승하차 정류장 설정 및 남은 정류장 수 계산 로직은
BusJourneyViewModel
로 이동하여, 각 모델의 역할을 명확히 했습니다.💬 리뷰 요구사항(선택)