14 lines
420 B
Java
14 lines
420 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.jasamedika.medifirst2000.entities.MasalahKeperawatan;
|
|
import com.jasamedika.medifirst2000.vo.MasalahKeperawatanVO;
|
|
|
|
/**
|
|
* @author Shakato
|
|
*/
|
|
public interface MasalahKeperawatanService extends BaseVoService<MasalahKeperawatan, MasalahKeperawatanVO, Integer> {
|
|
Map<String,Object> saveMasalahKeperawatanService(MasalahKeperawatanVO vo);
|
|
}
|