Example #1
0
 public Revista(int id, string titulo, string autor, string tema, string editor, string descripcion, string area, int edicion, string tituloanterior, string otrainfo, Direccion direccion, string anotaciones, DateTime fecha, string fondolocal)
 {
     this.id             = id;
     this.titulo         = titulo;
     this.autor          = autor;
     this.tema           = tema;
     this.editor         = editor;
     this.descripcion    = descripcion;
     this.area           = area;
     this.edicion        = edicion;
     this.tituloanterior = tituloanterior;
     this.otrainfo       = otrainfo;
     this.direccion      = direccion;
     this.anotaciones    = anotaciones;
     this.fecha          = fecha;
     this.fondolocal     = fondolocal;
 }
Example #2
0
 public Proveedor(int id, string nombre, int telefono, string email, string web, Direccion direccion)
 {
     this.id        = id;
     this.nombre    = nombre;
     this.telefono  = telefono;
     this.email     = email;
     this.web       = web;
     this.direccion = direccion;
 }