import {Component, OnDestroy, OnInit} from '@angular/core'; import {LecturerInfoService} from 'src/app/services/lecturer-info.service'; import {LecturerDataService} from 'src/app/services/lecturer-data.service'; import {LecturerViewService} from 'src/app/services/lecturer-view.service'; import {Router} from '@angular/router'; @Component({ selector: 'app-lecturer-create-omp-view', templateUrl: './lecturer-create-omp-view.component.html', styleUrls: ['./lecturer-create-omp-view.component.css'] }) export class LecturerCreateOmpViewComponent implements OnInit, OnDestroy { constructor(private lecturerInfoService: LecturerInfoService, private lecturerDataService: LecturerDataService, private lecturerViewService: LecturerViewService, private router: Router) { } ngOnInit(): void { } ngOnDestroy(): void { } }