Quitados errores de import
This commit is contained in:
parent
099180f8d2
commit
77016910fd
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
import {Evento} from './evento';
|
import {Eventoi} from './interfaces/eventoi';
|
||||||
|
|
||||||
export class Discoteca {
|
export class Discoteca {
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ export class Discoteca {
|
||||||
private nombre: string;
|
private nombre: string;
|
||||||
private telefono: number;
|
private telefono: number;
|
||||||
private localizacion: string;
|
private localizacion: string;
|
||||||
private eventos: Evento[];
|
private eventos: Eventoi[];
|
||||||
private descripcion: string;
|
private descripcion: string;
|
||||||
|
|
||||||
setId(id: number): void{
|
setId(id: number): void{
|
||||||
|
@ -42,7 +42,7 @@ export class Discoteca {
|
||||||
return this.localizacion
|
return this.localizacion
|
||||||
}
|
}
|
||||||
|
|
||||||
getEventos(): Evento[]{
|
getEventos(): Eventoi[]{
|
||||||
return this.eventos;
|
return this.eventos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,6 @@ import { PerfilDiscotecaPage } from '../perfil-discoteca/perfil-discoteca.page'
|
||||||
import { IonSlides} from '@ionic/angular';
|
import { IonSlides} from '@ionic/angular';
|
||||||
import { AlertController } from '@ionic/angular';
|
import { AlertController } from '@ionic/angular';
|
||||||
import { ViewChild } from '@angular/core';
|
import { ViewChild } from '@angular/core';
|
||||||
import { Evento } from '../evento';
|
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
import { from } from 'rxjs';
|
import { from } from 'rxjs';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { Evento } from '../evento';
|
import { Eventoi } from '../interfaces/eventoi';
|
||||||
import { Tab1Service } from '../tab1/tab1.service';
|
import { Tab1Service } from '../tab1/tab1.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -9,7 +9,7 @@ import { Tab1Service } from '../tab1/tab1.service';
|
||||||
})
|
})
|
||||||
export class ViewEventoPage implements OnInit {
|
export class ViewEventoPage implements OnInit {
|
||||||
|
|
||||||
evento: Evento;
|
evento: Eventoi;
|
||||||
|
|
||||||
constructor(private tab1Service: Tab1Service) { }
|
constructor(private tab1Service: Tab1Service) { }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue