aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index e1b3692..8b4d3c1 100644
--- a/README.md
+++ b/README.md
@@ -72,9 +72,7 @@ The script will create (and edit where specified) the following files:
│ │ └─ ServiceCarMappings.cs
│ ├─ Models
│ │ └─ Car
-│ │ ├─ CarServiceModel.cs
-│ │ ├─ CreateCarServiceModel.cs
-│ │ └─ EditCarServiceModel.cs
+│ │ └─ CarServiceModel.cs
│ └─ CarService.cs
├─ Web
│ ├─ Configurations
@@ -95,7 +93,7 @@ The script will create (and edit where specified) the following files:
│ └─ _ViewImports.cshtml (Only edited; Adds reference to the Car View Models namespace)
└─ Startup.cs (Only edited; Adds dependency injection configuration for CarService)
```
-All of the models have all given properties **and a "Guid Id" property**. Only the Create models don't have the "Guid Id" property.
+All of the models have all given properties **and a "Guid Id" property**. Only the Web Create models don't have the "Guid Id" property.
Controller and Service have **very basic** CRUD of the model. No view links are added, so you'll need to provide them (and to test out if everything work: just edit the link in the browser).