Skip to content

Instantly share code, notes, and snippets.

@Ze1598
Created December 28, 2019 19:13
Show Gist options
  • Save Ze1598/b2fd09f97e00af68b37c14c2981d53f6 to your computer and use it in GitHub Desktop.
Save Ze1598/b2fd09f97e00af68b37c14c2981d53f6 to your computer and use it in GitHub Desktop.
Reusable modal component: mock-serv-2.service.ts
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class MockServ2Service {
constructor() { }
alertDelete(modalData: any) {
alert("Product with ID " + modalData.productId + " has been deleted.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment