ohctechv3/.svn/pristine/5d/5d32955eb0d6e989e35a7b1a92cfec9366ec1d11.svn-base
2024-10-28 15:03:36 +05:30

19 lines
544 B
Plaintext

package com.healthcare.ohctech.service;
import com.healthcare.ohctech.dto.InjuryTypeDto;
import com.healthcare.ohctech.entity.InjuryType;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface InjuryTypeService {
InjuryType getInjuryTypeById(Long injuryTypeId);
Page<InjuryType> getAllInjuryTypes(Pageable pageable);
void addInjuryType(InjuryTypeDto injuryTypeDto);
void updateInjuryType(InjuryTypeDto injuryTypeDto);
void deleteInjuryType(Long injuryTypeId);
}