ohctechv3/.svn/pristine/ed/ed5d2247e43ea75bd945e53e4a79811efbd2fe1f.svn-base
2024-10-28 15:03:36 +05:30

19 lines
700 B
Plaintext

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<InterpretationMaster> getAllInterpretationMasters(Pageable pageable);
void addInterpretationMaster(InterpretationMasterDto interpretationMasterDto, Long userId);
void updateInterpretationMaster(Long id , InterpretationMasterDto interpretationMasterDto, Long userId);
void deleteInterpretationMaster(Long id);
}