añadida interfaz discoteca
This commit is contained in:
parent
227c254ebc
commit
b9d95793dc
|
@ -0,0 +1,2 @@
|
||||||
|
export interface DiscotecaI {
|
||||||
|
}
|
|
@ -20,6 +20,7 @@ export class PerfilDiscotecaPage implements OnInit {
|
||||||
nombre: string;
|
nombre: string;
|
||||||
telefono: number;
|
telefono: number;
|
||||||
localizacion: string;
|
localizacion: string;
|
||||||
|
descripcion: string;
|
||||||
fotoSrc: string;
|
fotoSrc: string;
|
||||||
fotoLoaded: string;
|
fotoLoaded: string;
|
||||||
someURL: string;
|
someURL: string;
|
||||||
|
@ -73,6 +74,10 @@ export class PerfilDiscotecaPage implements OnInit {
|
||||||
this.eventos = this.tab1Service.getEventos();
|
this.eventos = this.tab1Service.getEventos();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getDescripcion(): void{
|
||||||
|
this.descripcion = this.tab1Service.getDescripcion();
|
||||||
|
}
|
||||||
|
|
||||||
cargarImagen(){
|
cargarImagen(){
|
||||||
this.fotoSrc = this.someURL;
|
this.fotoSrc = this.someURL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,11 @@ export class Tab1Service implements OnInit{
|
||||||
return this.eventos;
|
return this.eventos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getDescripcion(): string{
|
||||||
|
this.initValues();
|
||||||
|
return this.discoteca.getDescripcion();
|
||||||
|
}
|
||||||
|
|
||||||
initEventos(): void{
|
initEventos(): void{
|
||||||
this.eventos = [];
|
this.eventos = [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue