package mobi.greenplate.client.service;
import java.util.List;
import mobi.greenplate.client.domain.RequestRide;
import mobi.greenplate.client.domain.User;
public class RequestRideService {
public void delete(Long id) {
throw new UnsupportedOperationException();
}
public RequestRide save(RequestRide requestRide, User requester) {
throw new UnsupportedOperationException();
}
public RequestRide findById(Long id) {
throw new UnsupportedOperationException();
}
public List<RequestRide> findAll(int firstResult, int maxResult) {
throw new UnsupportedOperationException();
}
public List<RequestRide> findByRequester(int firstResult, int maxResult, Long requesterId) {
throw new UnsupportedOperationException();
}
public List<RequestRide> findByStartAddress(int firstResult, int maxResult, Long startAddressId) {
throw new UnsupportedOperationException();
}
public List<RequestRide> findByEndAddress(int firstResult, int maxResult, Long endAddressId) {
throw new UnsupportedOperationException();
}
}
|