package com.healthcare.ohctech.service; import com.healthcare.ohctech.dto.CheckupParameterDto; import com.healthcare.ohctech.entity.CheckupParameter; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; public interface CheckupParameterService { CheckupParameter getCheckupParameterById(Long checkupParameterId); Page getAllCheckupParameters(Pageable pageable); void addCheckupParameter(CheckupParameterDto checkupParameterDto, Long userId); void updateCheckupParameter(CheckupParameterDto checkupParameterDto, Long userId); void deleteCheckupParameter(Long checkupParameterId); }