Skip to content

Instantly share code, notes, and snippets.

@rohman
Last active December 16, 2015 00:49
Show Gist options
  • Save rohman/5350310 to your computer and use it in GitHub Desktop.
Save rohman/5350310 to your computer and use it in GitHub Desktop.
Ulang Spring Mvc
/*
* 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