Skip to content

Instantly share code, notes, and snippets.

@visparashar
Created February 20, 2018 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save visparashar/27697efc629318883d537d9b1f63d791 to your computer and use it in GitHub Desktop.
Save visparashar/27697efc629318883d537d9b1f63d791 to your computer and use it in GitHub Desktop.
package com.programinjava.learning.RestApiDemo.service;
import java.util.List;
import com.programinjava.learning.RestApiDemo.dto.JsonUser;
import com.programinjava.learning.RestApiDemo.model.User;
public interface IUserService {
public JsonUser createUser(JsonUser user);
public void deleteUser(String id);
public void updateUser(User user);
public List<JsonUser> getUser(String userId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment