Skip to content

Instantly share code, notes, and snippets.

@Pudding124
Created April 21, 2020 06:23
Show Gist options
  • Save Pudding124/02db0d7fb811dfc19d3beb3052c4eecc to your computer and use it in GitHub Desktop.
Save Pudding124/02db0d7fb811dfc19d3beb3052c4eecc to your computer and use it in GitHub Desktop.
package dao;
import model.Car;
public interface CarDao {
void save(Car car);
Car carQuery(String number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment