15 lines
564 B
Plaintext
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);
|
|
}
|