ohctechv3/.svn/pristine/92/92a90549fa5094f8965a82882af1c3a1dfe719e5.svn-base

19 lines
666 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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);
}