20 lines
696 B
Plaintext
20 lines
696 B
Plaintext
package com.healthcare.ohctech.service;
|
|
|
|
import com.healthcare.ohctech.dto.CheckupParameterValueDto;
|
|
import com.healthcare.ohctech.entity.CheckupParameterValue;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.data.domain.Pageable;
|
|
|
|
public interface CheckupParameterValueService {
|
|
|
|
CheckupParameterValue getCheckupParameterValueById(Long id);
|
|
|
|
Page<CheckupParameterValue> getAllCheckupParameterValues(Pageable pageable);
|
|
|
|
void addCheckupParameterValue(CheckupParameterValueDto checkupParameterValueDto);
|
|
|
|
CheckupParameterValue updateCheckupParameterValue(CheckupParameterValueDto checkupParameterValueDto);
|
|
|
|
void deleteCheckupParameterValue(Long id);
|
|
}
|