From 5857ad29e13a321b797fe009ad554b334cb61d3a Mon Sep 17 00:00:00 2001 From: davedavedave Date: Tue, 9 Feb 2021 13:46:22 +0800 Subject: [PATCH] Fix for missing service --- StockUI/src/app/app.component.ts | 2 +- StockUI/src/app/app.module.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/StockUI/src/app/app.component.ts b/StockUI/src/app/app.component.ts index 90a4d5b..d1a8091 100644 --- a/StockUI/src/app/app.component.ts +++ b/StockUI/src/app/app.component.ts @@ -1,5 +1,5 @@ import { Component, AfterViewInit } from '@angular/core'; -import { StockService } from 'src/Service/StockService'; +import { StockService } from 'src/Service/stockService'; import { Stock } from 'src/Model/stock'; @Component({ diff --git a/StockUI/src/app/app.module.ts b/StockUI/src/app/app.module.ts index 286dd9f..c055786 100644 --- a/StockUI/src/app/app.module.ts +++ b/StockUI/src/app/app.module.ts @@ -2,7 +2,7 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; -import { StockService } from 'src/Service/StockService'; +import { StockService } from 'src/Service/stockService'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule } from '@angular/forms';