19 lines
626 B
Plaintext
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);
|
|
}
|