ohctechv3/.svn/pristine/c8/c875e5f7416e5028b018348fbec2260fa44deb8a.svn-base
2024-10-28 15:03:36 +05:30

19 lines
626 B
Plaintext

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<CheckupFormSection> getAllCheckupFormSections(Pageable pageable);
void addCheckupFormSection(CheckupFormSectionDto dto, Long userId);
void updateCheckupFormSection(CheckupFormSectionDto dto, Long userId);
void deleteCheckupFormSection(Long id);
}