17 lines
447 B
Java
17 lines
447 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.KehamilanSekarang;
|
|
|
|
/**
|
|
* Repository class for PapStatusFungsionalDao
|
|
*
|
|
* @author Askur
|
|
*/
|
|
@Repository("KehamilanSekarangDao")
|
|
public interface KehamilanSekarangDao extends PagingAndSortingRepository<KehamilanSekarang, String> {
|
|
|
|
}
|