From 57b7c35e001d2c94e9d711a7ad62ac6d39ba8335 Mon Sep 17 00:00:00 2001 From: edison Date: Sat, 13 Oct 2018 16:31:55 +0800 Subject: [PATCH] Update document Part-I.md --- docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-I.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-I.md b/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-I.md index 252090d248..d536b550c6 100644 --- a/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-I.md +++ b/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-I.md @@ -200,7 +200,8 @@ namespace Acme.BookStore * 为应用服务定义接口不是必须的,不过,我们推荐这么做. * `IAsyncCrudAppService`中定义了基础的 **CRUD**方法:`GetAsync`, `GetListAsync`, `CreateAsync`, `UpdateAsync` 和 `DeleteAsync`.不需要扩展它.取而代之,你可以继承空的`IApplicationService`接口定义你自己的方法. -* `IAsyncCrudAppService`有很多的泛型,你可以为每一个方法使用单个或者多个的DTO. +* `IAsyncCrudAppService`有一些变体,你可以为每一个方法使用单个或者多个的DTO.(译者注:意思是类似EntityDto和UpdateEntityDto可以用同一个,也可以分别单独指定 +) #### BookAppService