Skip to content
Snippets Groups Projects
lecturer-create-omp-view.component.ts 871 B
Newer Older
import {Component, OnDestroy, OnInit} from '@angular/core';
import {LecturerInfoService} from '../../services/lecturer-info.service';
import {LecturerDataService} from '../../services/lecturer-data.service';
import {LecturerViewService} from '../../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 {
  }

}