ohctechv3/.svn/pristine/62/626d48ae7f5f2ab496cf2b3109c0423d61b98d9f.svn-base
2024-10-28 15:03:36 +05:30

14 lines
476 B
Plaintext

package com.healthcare.ohctech.repository;
import com.healthcare.ohctech.entity.TreatmentExternal;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface TreatmentExternalRepo extends JpaRepository<TreatmentExternal, Long> {
void deleteByEmployeeAppointmentId(Long appointmentId);
List<TreatmentExternal> findByEmployeeAppointmentId(Long appointmentId);
}