Last active
December 16, 2015 00:49
-
-
Save rohman/5350310 to your computer and use it in GitHub Desktop.
Ulang Spring Mvc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package id.web.rohman.ulangspring.service.api; | |
import id.web.rohman.ulangspring.model.Tamu; | |
import java.util.List; | |
/** | |
* | |
* @author syahril | |
*/ | |
public interface TamuService { | |
public List<Tamu> listTamu(); | |
public Tamu findTamuById(Integer id); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment