package com.healthcare.ohctech.service; import com.healthcare.ohctech.dto.InterpretationMasterDto; import com.healthcare.ohctech.entity.InterpretationMaster; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; public interface InterpretationMasterService { InterpretationMaster getInterpretationMasterById(Long id); Page getAllInterpretationMasters(Pageable pageable); void addInterpretationMaster(InterpretationMasterDto interpretationMasterDto, Long userId); void updateInterpretationMaster(Long id , InterpretationMasterDto interpretationMasterDto, Long userId); void deleteInterpretationMaster(Long id); }