public Teatre(Adreça Adreça, string nom, int files, int columnes) { this.Adreça = Adreça; Nom = nom; Files = files; Columnes = columnes; }
public Persona(Adreça Adreça, string NIF, string nom, int edat) { this.Adreça = Adreça; this.NIF = NIF; this.nom = nom; this.edat = edat; }
public Administrador(Adreça Adreça, string nif, string nom, int edat, string email, string password, int telefon, DateTime dataNaixement) : base(Adreça, nif, nom, edat, email, password, telefon, dataNaixement) { /* NIF = nif; * this.nom = nom; * this.edat = edat; * this.email = email; * this.password = password;*/ }
public Client(Adreça Adreça, string nif, string nom, int edat, string email, string password, int telefon, DateTime dataNaixement, string cognoms) : base(Adreça, nif, nom, edat, email, password, telefon, dataNaixement) { /* NIF = nif; * this.nom = nom; * this.edat = edat; * this.email = email; * this.password = password;*/ Cognoms = cognoms; }
public Usuari(Adreça Adreça, string nif, string nom, int edat, string email, string password, int telefon, DateTime dataNaixement) { this.Adreça = Adreça; NIF = nif; this.nom = nom; this.edat = edat; this.email = email; this.password = password; this.dataNaixement = dataNaixement; this.telefon = telefon; }
public Director(Adreça Adreça, string nif, string nom, int edat) : base(Adreça, nif, nom, edat) { }