Page MenuHomec4science

hierarchy.component.ts
No OneTemporary

File Metadata

Created
Tue, Jul 1, 06:00

hierarchy.component.ts

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { AuthenticationService } from '../authentication.service';
@Component({
selector: 'app-hierarchy',
templateUrl: './hierarchy.component.html',
styleUrls: ['./hierarchy.component.css']
})
export class HierarchyComponent implements OnInit {
constructor(private router: Router, public auth: AuthenticationService) { }
admin(){
this.router.navigateByUrl('/admin');
}
results(){
this.router.navigateByUrl('/results');
}
surveylist(){
this.router.navigateByUrl('/surveylist');
}
newsurvey(){
this.router.navigateByUrl('/newsurvey');
}
hierarchy(){
}
ngOnInit() {
}
}

Event Timeline