Quitados errores de import
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
|
||||
import {Evento} from './evento';
|
||||
import {Eventoi} from './interfaces/eventoi';
|
||||
|
||||
export class Discoteca {
|
||||
|
||||
@@ -7,7 +7,7 @@ export class Discoteca {
|
||||
private nombre: string;
|
||||
private telefono: number;
|
||||
private localizacion: string;
|
||||
private eventos: Evento[];
|
||||
private eventos: Eventoi[];
|
||||
private descripcion: string;
|
||||
|
||||
setId(id: number): void{
|
||||
@@ -42,7 +42,7 @@ export class Discoteca {
|
||||
return this.localizacion
|
||||
}
|
||||
|
||||
getEventos(): Evento[]{
|
||||
getEventos(): Eventoi[]{
|
||||
return this.eventos;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user