예제 #1
0
 public static void SetValues()
 {
     price = 2;
     days = 6;
     movie = new Movie("Giver", rentalPrice: price);
     movie1 = new Movie("Terminator", rentalPrice: price);
 }
예제 #2
0
 public Rental(Movie movie, int days)
 {
    
     this.Movie = movie;
     this.Days = days;
 }