From ef163726a5444ba0cbc631f74730184172c1c486 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 13 May 2021 15:05:53 +0300 Subject: Implemented BaseService that uses generics to implement very basic CRUD; Moved away from 3 service model to 1 service model in add feature script --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'README.md') 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). -- cgit v1.2.3