package com.healthcare.ohctech.service; import com.healthcare.ohctech.dto.CheckupFormSectionDto; import com.healthcare.ohctech.entity.CheckupFormSection; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; public interface CheckupFormSectionService { CheckupFormSection getCheckupFormSectionById(Long id); Page getAllCheckupFormSections(Pageable pageable); void addCheckupFormSection(CheckupFormSectionDto dto, Long userId); void updateCheckupFormSection(CheckupFormSectionDto dto, Long userId); void deleteCheckupFormSection(Long id); }