Last change
on this file since 993189e 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:
726 bytes
|
Rev | Line | |
---|
[ee137aa] | 1 | import { Component, OnInit, Inject } from '@angular/core';
|
---|
| 2 | import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
---|
| 3 | import { IPharmacyHead } from '../../shared/interfaces';
|
---|
| 4 |
|
---|
| 5 | @Component({
|
---|
| 6 | selector: 'app-edit-pharmacy-head-dialog',
|
---|
| 7 | templateUrl: './edit-pharmacy-head-dialog.component.html',
|
---|
| 8 | styleUrls: ['./edit-pharmacy-head-dialog.component.css']
|
---|
| 9 | })
|
---|
| 10 | export class EditPharmacyHeadDialogComponent implements OnInit {
|
---|
| 11 | head: IPharmacyHead;
|
---|
| 12 |
|
---|
| 13 | constructor(private dialogRef: MatDialogRef<EditPharmacyHeadDialogComponent>, @Inject(MAT_DIALOG_DATA) data) {
|
---|
| 14 | this.head = data;
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | ngOnInit(): void {
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | save() {
|
---|
| 21 | this.dialogRef.close(this.head);
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | close() {
|
---|
| 25 | this.dialogRef.close();
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.