creados api y login services con funciones vacías
This commit is contained in:
@@ -8,6 +8,7 @@ export class Discoteca {
|
||||
private telefono: number;
|
||||
private localizacion: string;
|
||||
private eventos: Evento[];
|
||||
private descripcion: string;
|
||||
|
||||
|
||||
setNombre(nombre: string): void{
|
||||
@@ -37,4 +38,12 @@ export class Discoteca {
|
||||
getEventos(): Evento[]{
|
||||
return this.eventos;
|
||||
}
|
||||
|
||||
setDescripcion(desc: string): void{
|
||||
this.descripcion = desc;
|
||||
}
|
||||
|
||||
get Descripcion(): string{
|
||||
return this.descripcion;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user