2829303132333435
} public WorkingDays findOne() { final List<WorkingDays> workingDaysList = this.repository.findAll(); if (workingDaysList == null || workingDaysList.isEmpty()) { throw new WorkingDaysNotFoundException(); } return workingDaysList.get(0); }