source: Farmatiko/ClientApp/src/app/dialogs/pharmacy-dialog/pharmacy-dialog.component.ts@ ee137aa

Last change on this file since ee137aa was ee137aa, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Added DataService and dialogs, all bindings needed implemented

  • Property mode set to 100644
File size: 627 bytes
Line 
1import { Component, OnInit, Inject } from '@angular/core';
2import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
3import { IPharmacy } from '../../shared/interfaces';
4
5@Component({
6 selector: 'app-pharmacy-dialog',
7 templateUrl: './pharmacy-dialog.component.html',
8 styleUrls: ['./pharmacy-dialog.component.css']
9})
10export class PharmacyDialogComponent implements OnInit {
11 pharmacy: IPharmacy;
12
13 constructor(private dialogRef: MatDialogRef<PharmacyDialogComponent>, @Inject(MAT_DIALOG_DATA) data) {
14 this.pharmacy = data;
15 }
16
17 ngOnInit(): void {
18 }
19
20 close() {
21 this.dialogRef.close();
22 }
23
24}
Note: See TracBrowser for help on using the repository browser.