package com.jasamedika.medifirst2000.dao; import java.util.Date; import java.util.List; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; /** * Repository class for AgamaM * * @author Roberto */ @Repository("GenericCustomDao") public interface GenericCustomDao { public List findPapNoCmAndTglInput(@Param("table") String table,@Param("noCm") String noCm,@Param("tglInput") Date tglInput); public List findMedicalRecordNoCmAndTglInput(@Param("table") String table,@Param("noCm") String noCm,@Param("tglInput") Date tglInput); public List findPapNoCm(String previx, String noCm); public List findMedicalRecordTglInput(String previx, Date from , Date until); public List findMedicalRecordCustomTgl(String previx, Date from , Date until,String tgl); public List findMedicalRecordNoRec(String i, String noRec); public Integer checkInputan(String i, String noRec); public List findMedicalRecordNoRecAndTglInput(String i, String noRec,Date tglInput); public List findMedicalRecordNoRecAndTglInputPasien(String i, String noRec,Date tglInput); public List findMedicalRecordNoRecAntrianPasienDiPeriksa(String i, String noRec); public List findMedicalRecordPasienNoRecAntrianPasienDiPeriksa(String i, String noRec) ; }