Fix web-app
This commit is contained in:
parent
9b1e8efe36
commit
0ab78242cb
4
.gitignore
vendored
4
.gitignore
vendored
@ -242,8 +242,8 @@ ServiceFabricBackup/
|
||||
*.rptproj.bak
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
# *.mdf
|
||||
# *.ldf
|
||||
*.ndf
|
||||
|
||||
# Business Intelligence projects
|
||||
|
@ -1,4 +1,4 @@
|
||||
@API_HostAddress = http://localhost:5242
|
||||
@API_HostAddress = http://localhost:54730
|
||||
|
||||
GET {{API_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
@ -14,7 +14,7 @@
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:5242",
|
||||
"applicationUrl": "http://localhost:54730",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
@ -24,7 +24,7 @@
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "https://localhost:7234;http://localhost:5242",
|
||||
"applicationUrl": "https://localhost:7234;http://localhost:54730",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
|
BIN
Api/data/BrainWare.mdf
Normal file
BIN
Api/data/BrainWare.mdf
Normal file
Binary file not shown.
BIN
Api/data/BrainWare_log.ldf
Normal file
BIN
Api/data/BrainWare_log.ldf
Normal file
Binary file not shown.
@ -11,10 +11,10 @@
|
||||
</div>
|
||||
<ul>
|
||||
<li *ngFor="let order of orders">
|
||||
{{order.Description}} (Total: ${{order.OrderTotal}})
|
||||
{{order.dscription}} (Total: ${{order.orderTotal}})
|
||||
<ul>
|
||||
<li *ngFor="let orderProduct of order.OrderProducts">
|
||||
{{orderProduct.Product.Name}} ({{orderProduct.Quantity}} @ ${{orderProduct.Price}}/ea)
|
||||
<li *ngFor="let orderProduct of order.orderProducts">
|
||||
{{orderProduct.product.name}} ({{orderProduct.quantity}} @ ${{orderProduct.price}}/ea)
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
Loading…
Reference in New Issue
Block a user