Changeset b738035 for trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.ts
- Timestamp:
- 01/24/22 21:08:32 (3 years ago)
- Branches:
- master
- Children:
- 76712b2
- Parents:
- bdd6491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.ts
rbdd6491 rb738035 1 1 import { Component, OnInit } from '@angular/core'; 2 import { ActivatedRoute } from '@angular/router';3 2 import { Planner } from 'src/app/_models/planner'; 4 3 import { PlannerService } from 'src/app/_services/planner.service'; 5 4 import { DynamicDialogRef } from 'primeng/dynamicdialog'; 6 import { LocationService } from 'src/app/_services/location.service';7 5 8 6 … … 17 15 planners: Planner[]; 18 16 19 constructor(private plannerService: PlannerService, 20 private route: ActivatedRoute, private ref: DynamicDialogRef, private locationService : LocationService) { 17 constructor(private plannerService: PlannerService, private ref: DynamicDialogRef) { 21 18 this.planners = []; 22 19 } … … 29 26 } 30 27 ); 31 32 28 } 33 29
Note:
See TracChangeset
for help on using the changeset viewer.