18 lines
429 B
Java
18 lines
429 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.AsuransiNaker;
|
|
|
|
/**
|
|
* Repository class for AsuransiNaker
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Repository("AsuransiNakerDao")
|
|
public interface AsuransiNakerDao extends PagingAndSortingRepository<AsuransiNaker, String> {
|
|
|
|
|
|
}
|