ohctechv3/.svn/pristine/1d/1df0daf09fda436a66e6c4a05598c089a0f29c66.svn-base
2024-10-28 15:03:36 +05:30

8 lines
302 B
Plaintext

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