fi
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { Router, NavigationExtras } from '@angular/router'
|
||||
import { MermsServiceProviderService } from './../providers/merms-service-provider.service';
|
||||
|
||||
|
||||
@Component({
|
||||
@@ -12,21 +13,35 @@ export class MermsDashPage implements OnInit {
|
||||
currentDateFormated: string = '10/10/2020';
|
||||
welcomeName: string = '';
|
||||
|
||||
constructor(private router: Router) {
|
||||
|
||||
dashData: any;
|
||||
|
||||
constructor(
|
||||
private router: Router,
|
||||
private mermsServiceProviderService: MermsServiceProviderService
|
||||
) {
|
||||
this.welcomeName = "Dr. Something"
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
alert(100);
|
||||
}
|
||||
|
||||
getDashData() {
|
||||
|
||||
|
||||
}
|
||||
|
||||
goSettings() {
|
||||
this.router.navigateByUrl('/merms-settings')
|
||||
}
|
||||
goPractice(){
|
||||
goPractice() {
|
||||
this.router.navigateByUrl('/merms-practice')
|
||||
}
|
||||
goHome(){
|
||||
|
||||
goPatient() {
|
||||
this.router.navigateByUrl('/merms-patient')
|
||||
}
|
||||
goHome() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user