19 lines
660 B
Plaintext
19 lines
660 B
Plaintext
package com.healthcare.ohctech.service;
|
|
|
|
import com.healthcare.ohctech.dto.EmployerContractorDto;
|
|
import com.healthcare.ohctech.entity.EmployerContractor;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.data.domain.Pageable;
|
|
|
|
public interface EmployerContractorService {
|
|
EmployerContractor getEmployerContractorById(Long Id);
|
|
|
|
Page<EmployerContractor> getAllEmployerContractors(Pageable pageable);
|
|
|
|
void addEmployerContractor(EmployerContractorDto employerContractorDto,Long userId);
|
|
|
|
void updateEmployerContractor(EmployerContractorDto employerContractorDto,Long userId);
|
|
|
|
void deleteEmployerContractor(Long Id);
|
|
}
|