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

12 lines
391 B
Plaintext

package com.healthcare.ohctech.repository;
import com.healthcare.ohctech.entity.EmployerContractor;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.stereotype.Repository;
@Repository
public interface EmployerContractorRepo extends JpaRepository<EmployerContractor,Long> {
}