Created
          September 15, 2011 04:49 
        
      - 
      
- 
        Save krams915/1218569 to your computer and use it in GitHub Desktop. 
    IEventService.java
  
        
  
    
      This file contains hidden or 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
    
  
  
    
  | package org.krams.tutorial.service; | |
| import java.util.List; | |
| import org.krams.tutorial.domain.Event; | |
| /** | |
| * Service interface for {@link Event} | |
| * | |
| * @author krams at {@link http://[email protected]} | |
| */ | |
| public interface IEventService { | |
| public Event create(Event event); | |
| public Event read(Long id); | |
| public List<Event> readAll(); | |
| public Event update(Event event); | |
| public Event delete(Long id); | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment