package com.healthcare.ohctech.repository;

import com.healthcare.ohctech.entity.CheckupFormKeyValue;
import com.healthcare.ohctech.entity.EmpCadre;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.Optional;

@Repository
public interface EmpCadreRepo extends JpaRepository<EmpCadre, Long> {
    Optional<EmpCadre> findById(Long id);
}