aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-12 12:58:34 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-12 12:58:34 +0300
commit50478fa99aa23cfcdb9039e138dbf10b7dca2459 (patch)
tree658228151e1d89a7d4d8cd4c69e81763d61c8dce
parentca965d536278a4970ede0b88a92c6f218bfc5915 (diff)
downloadit-kariera-exam-template-50478fa99aa23cfcdb9039e138dbf10b7dca2459.tar
it-kariera-exam-template-50478fa99aa23cfcdb9039e138dbf10b7dca2459.tar.gz
it-kariera-exam-template-50478fa99aa23cfcdb9039e138dbf10b7dca2459.zip
Fixed readme file view
-rw-r--r--README.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0c0675e..19e2e5f 100644
--- a/README.md
+++ b/README.md
@@ -81,11 +81,17 @@ The script will create (and edit where specified) the following files:
│ │ └─ ControllerCarMappings.cs
│ ├─ Controllers
│ │ └─ CarControllers.cs
+│ ├─ Models
+│ │ └─ Car
+│ │ ├─ CarViewModel.cs
+│ │ ├─ CreateCarViewModel.cs
+│ │ └─ EditCarViewModel.cs
│ └─ Views
│ ├─ Car
-│ │ ├─ CarViewModel.cs
-│ │ ├─ CreateCarViewModel.cs
-│ │ └─ EditCarViewModel.cs
+│ │ ├─ Index.cshtml
+│ │ ├─ Create.cshtml
+│ │ ├─ Edit.cshtml
+│ │ └─ Delete.cshtml
│ └─ _ViewImports.cshtml (Only edited; Adds reference to the Car View Models namespace)
└─ Startup.cs (Only edited; Adds dependency injection configuration for CarService)
```