package com.healthcare.ohctech.service; import com.healthcare.ohctech.dto.JobProfileDto; import com.healthcare.ohctech.entity.JobProfile; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; public interface JobProfileService { JobProfile getJobProfileById(Long jobProfileId); Page getAllJobProfiles(Pageable pageable); void addJobProfile(JobProfileDto jobProfileDto,Long userId); void updateJobProfile(JobProfileDto jobProfileDto,Long userId); void deleteJobProfile(Long jobProfileId); }