2021-01-07 11:34:56 +07:00

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);
}