Beispiel #1
0
 public MovieInFormat(Movie.Movie movie, MovieItemFormat format) {
     this.movie = movie;
     this.format = format;
 }
Beispiel #2
0
 public RentInfo(Movie.Movie movie, MovieItemFormat format) : this(new MovieInFormat(movie, format)) { }
Beispiel #3
0
 public MoviePicture(Movie movie, Image picture, string description)
     : this(movie, picture) {
     Description = description;
 }
Beispiel #4
0
 public RentInfo(Movie.Movie movie, MovieItemFormat format, int days) : this(new MovieInFormat(movie, format), days) { }
Beispiel #5
0
 public MoviePicture(Movie movie, Image picture)
     : this(movie.Session) {
     Movie = movie;
     Image = picture;
 }