diff options
| -rw-r--r-- | README.md | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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) ``` |
