Guest User

Untitled

a guest
Jan 9th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import com.manjula.todo.dto.TodoDto;
  2.  
  3. import java.util.List;
  4.  
  5. public interface TodoService {
  6.  
  7. Long save(TodoDto todoDto);
  8.  
  9. TodoDto findById(Long id);
  10.  
  11. void update(TodoDto todoDto);
  12.  
  13. void delete(Long id);
  14.  
  15. List<TodoDto> findAll();
  16.  
  17. }
Add Comment
Please, Sign In to add comment