aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-13 15:05:53 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-13 15:05:53 +0300
commitef163726a5444ba0cbc631f74730184172c1c486 (patch)
treed7d60837bb093c4256ad6506bc10ab981dafd491 /README.md
parent19bb4631a7c0b57c8da19ca7aa89864ac1555836 (diff)
downloadit-kariera-exam-template-ef163726a5444ba0cbc631f74730184172c1c486.tar
it-kariera-exam-template-ef163726a5444ba0cbc631f74730184172c1c486.tar.gz
it-kariera-exam-template-ef163726a5444ba0cbc631f74730184172c1c486.zip
Implemented BaseService that uses generics to implement very basic CRUD; Moved away from 3 service model to 1 service model in add feature script
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).