12 lines
243 B
Java
12 lines
243 B
Java
package com.jasamedika.medifirst2000.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.jasamedika.medifirst2000.vo.AturanPeminjamanVO;
|
|
|
|
public interface AturanPeminjamanService {
|
|
|
|
Map<String,Object> saveAturanPeminjaman(AturanPeminjamanVO vo);
|
|
|
|
}
|