Skip to content

Instantly share code, notes, and snippets.

@rightson
Created July 6, 2016 00:30
Show Gist options
  • Select an option

  • Save rightson/889d514ced6021b536f87cd1aed51c52 to your computer and use it in GitHub Desktop.

Select an option

Save rightson/889d514ced6021b536f87cd1aed51c52 to your computer and use it in GitHub Desktop.
class Rental {
private Movie _movie;
private int _daysRented;
public Rental(Movie movie, int daysRented) {
_movie = movie;
_daysRented = daysRented;
}
public int getDaysRented() {
return _daysRented;
}
public Movie getMovie() {
return _movie;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment