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

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);
}