Created
November 11, 2015 15:46
-
-
Save chanakaDe/70279215861de322a6f7 to your computer and use it in GitHub Desktop.
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 com.chanakaSample.repository; | |
import java.util.List; | |
import com.chanakaSample.model.Activity; | |
public interface ActivityRepository { | |
public abstract List<Activity> findAllActivities(); | |
public abstract Activity findActivity(String activityId); | |
public abstract void createActivity(Activity activity); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment