import { Injectable } from '@angular/core'; import { NbDialogService } from '@nebular/theme'; import { ShowDialogComponent } from '../pages/components/show-dialog/show-dialog.component'; @Injectable({ providedIn: 'root', }) export class MessageDialogService { constructor(private dialogService: NbDialogService) {} open(title: string, errorMsg: string) { this.dialogService.open(ShowDialogComponent, { context: { title: title, errorMsg: errorMsg, }, }); } }