// 1. Extract and Move method here to 'Movie', since:
 // - it uses a switch statement on the 'Movie' data.
 // - it uses Movie types, and type information tends to be more volatile, so better to keep this in the Movie class and pass in DaysRented.
 public double GetCharge()
 {
     return(Movie.GetCharge(DaysRented));
 }