Example #1
0
 public Pelicula(int id, String nombre, int duracion, String actores, String director, Genero genero,
                 Clasificacion clasificacion, String descripcion, byte[] imagen, bool estado)
 {
     this.id            = id;
     this.nombre        = nombre;
     this.duracion      = duracion;
     this.actores       = actores;
     this.director      = director;
     this.genero        = genero;
     this.clasificacion = clasificacion;
     this.descripcion   = descripcion;
     this.imagen        = imagen;
     this.estado        = estado;
 }
Example #2
0
 public void setGenero(Genero genero)
 {
     this.genero = genero;
 }