19 lines
666 B
Plaintext
19 lines
666 B
Plaintext
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<CheckupParameter> getAllCheckupParameters(Pageable pageable);
|
|
|
|
void addCheckupParameter(CheckupParameterDto checkupParameterDto, Long userId);
|
|
|
|
void updateCheckupParameter(CheckupParameterDto checkupParameterDto, Long userId);
|
|
|
|
void deleteCheckupParameter(Long checkupParameterId);
|
|
}
|