Skip to content

Commit

Permalink
refactor : 불필요한 메서드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
huncozyboy committed Jan 9, 2025
1 parent 060333e commit b04b4fc
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package leets.weeth.domain.schedule.domain.service;

import leets.weeth.domain.attendance.domain.entity.Attendance;
import leets.weeth.domain.attendance.domain.repository.AttendanceRepository;
import leets.weeth.domain.schedule.application.dto.ScheduleDTO;
import leets.weeth.domain.schedule.application.mapper.ScheduleMapper;
import leets.weeth.domain.schedule.domain.entity.Meeting;
Expand All @@ -18,7 +16,6 @@
public class MeetingGetService {

private final MeetingRepository meetingRepository;
private final AttendanceRepository attendanceRepository;
private final ScheduleMapper mapper;

public Meeting find(Long meetingId) {
Expand All @@ -39,6 +36,4 @@ public List<Meeting> find(Integer cardinal) {
public List<Meeting> findAll() {
return meetingRepository.findAll();
}

public List<Attendance> getAttendancesByMeeting(Meeting meeting) {return attendanceRepository.findAllByMeeting(meeting);}
}

0 comments on commit b04b4fc

Please sign in to comment.