Fix web-app

This commit is contained in:
Christopher J. Walker 2024-02-22 17:48:36 -05:00
parent 9b1e8efe36
commit 0ab78242cb
6 changed files with 8 additions and 8 deletions

4
.gitignore vendored
View File

@ -242,8 +242,8 @@ ServiceFabricBackup/
*.rptproj.bak *.rptproj.bak
# SQL Server files # SQL Server files
*.mdf # *.mdf
*.ldf # *.ldf
*.ndf *.ndf
# Business Intelligence projects # Business Intelligence projects

View File

@ -1,4 +1,4 @@
@API_HostAddress = http://localhost:5242 @API_HostAddress = http://localhost:54730
GET {{API_HostAddress}}/weatherforecast/ GET {{API_HostAddress}}/weatherforecast/
Accept: application/json Accept: application/json

View File

@ -14,7 +14,7 @@
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "swagger", "launchUrl": "swagger",
"applicationUrl": "http://localhost:5242", "applicationUrl": "http://localhost:54730",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
@ -24,7 +24,7 @@
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "swagger", "launchUrl": "swagger",
"applicationUrl": "https://localhost:7234;http://localhost:5242", "applicationUrl": "https://localhost:7234;http://localhost:54730",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

BIN
Api/data/BrainWare.mdf Normal file

Binary file not shown.

BIN
Api/data/BrainWare_log.ldf Normal file

Binary file not shown.

View File

@ -11,10 +11,10 @@
</div> </div>
<ul> <ul>
<li *ngFor="let order of orders"> <li *ngFor="let order of orders">
{{order.Description}} (Total: ${{order.OrderTotal}}) {{order.dscription}} (Total: ${{order.orderTotal}})
<ul> <ul>
<li *ngFor="let orderProduct of order.OrderProducts"> <li *ngFor="let orderProduct of order.orderProducts">
{{orderProduct.Product.Name}} ({{orderProduct.Quantity}} &#64; ${{orderProduct.Price}}/ea) {{orderProduct.product.name}} ({{orderProduct.quantity}} &#64; ${{orderProduct.price}}/ea)
</li> </li>
</ul> </ul>
</li> </li>