se tiene la discoteca asociada a los eventos en Feed y view Evento Cliente

This commit is contained in:
2021-05-13 17:47:34 +02:00
parent 3c2976437d
commit 59f0fcc724
5 changed files with 48 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { DiscotecaI } from '../interfaces/discoteca-i';
import { Eventoi } from '../interfaces/eventoi';
import { ApiService } from './api.service';
@@ -10,6 +11,7 @@ export class FeedService {
eventos: Eventoi[];
eventoIndex: number;
discotecaEvento: DiscotecaI;
constructor(private apiService: ApiService, private router: Router) { }