package swg.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import swg.repository.ClockDao; import swg.entity.Clock; import java.util.List; @Service public class ClockService { @Autowired ClockDao clockDao; public List getLastSaveTime() { return this.clockDao.findAll(); } }