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

15 lines
564 B
Plaintext

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<JobProfile> getAllJobProfiles(Pageable pageable);
void addJobProfile(JobProfileDto jobProfileDto,Long userId);
void updateJobProfile(JobProfileDto jobProfileDto,Long userId);
void deleteJobProfile(Long jobProfileId);
}