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
|
*.rptproj.bak
|
||||||
|
|
||||||
# SQL Server files
|
# SQL Server files
|
||||||
*.mdf
|
# *.mdf
|
||||||
*.ldf
|
# *.ldf
|
||||||
*.ndf
|
*.ndf
|
||||||
|
|
||||||
# Business Intelligence projects
|
# Business Intelligence projects
|
||||||
|
@ -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
|
||||||
|
@ -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
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>
|
</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}} @ ${{orderProduct.Price}}/ea)
|
{{orderProduct.product.name}} ({{orderProduct.quantity}} @ ${{orderProduct.price}}/ea)
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user