19 lines
649 B
Java
19 lines
649 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.jasamedika.medifirst2000.vo.AsuhanKeperawatanPeriOperatifVO;
|
|
|
|
public interface AsuhanKeperawatanPeriOperatifService {
|
|
public Map<String, Object> getAllAsuhan();
|
|
public Map<String, Object> getAllIntraOperasiPerawatBedah();
|
|
public Map<String, Object> saveAsuhan(AsuhanKeperawatanPeriOperatifVO vo);
|
|
public Map<String, Object> getAllPostOperasiPerawatBedah();
|
|
public Map<String, Object> getAllIntraOperasiAnestesi();
|
|
public Map<String, Object> getAllPostOperasiAnestesi();
|
|
public Map<String, Object> getAllIntraOperasiPerawatBedahV1();
|
|
|
|
|
|
}
|