Skip to content

Instantly share code, notes, and snippets.

@rohman
Created April 11, 2013 23:44
Show Gist options
  • Save rohman/5368134 to your computer and use it in GitHub Desktop.
Save rohman/5368134 to your computer and use it in GitHub Desktop.
Ulang Spring mvc Service
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package id.web.rohman.ulangspringservice.service.api;
import id.web.rohman.ulangspringservice.model.Tamu;
import java.util.List;
/**
*
* @author syahril
*/
public interface TamuService {
public List<Tamu> listTamu();
public Tamu findTamuById(Integer id);
public void saveTamu(Tamu tamu);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment