2021-07-20 19:22:11 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
import { ModalController } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-eliminate-event',
|
|
|
|
|
templateUrl: './eliminate-event.page.html',
|
|
|
|
|
styleUrls: ['./eliminate-event.page.scss'],
|
|
|
|
|
})
|
|
|
|
|
export class EliminateEventPage implements OnInit {
|
|
|
|
|
|
2023-08-11 16:38:23 +01:00
|
|
|
constructor(private modalController: ModalController) { }
|
2021-07-20 19:22:11 +01:00
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-11 16:38:23 +01:00
|
|
|
close() {
|
2021-07-20 19:22:11 +01:00
|
|
|
this.modalController.dismiss('No');
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-11 16:38:23 +01:00
|
|
|
save() {
|
2021-07-20 19:22:11 +01:00
|
|
|
this.modalController.dismiss('Yes');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|