19 lines
700 B
Plaintext
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);
|
|
}
|