Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import com.manjula.todo.dto.TodoDto;
- import java.util.List;
- public interface TodoService {
- Long save(TodoDto todoDto);
- TodoDto findById(Long id);
- void update(TodoDto todoDto);
- void delete(Long id);
- List<TodoDto> findAll();
- }
Add Comment
Please, Sign In to add comment