码迷,mamicode.com
首页 > 其他好文 > 详细

ABP开发手记10 - 展示层实现增删改查-控制器

时间:2019-10-03 00:37:49      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:dex   sea   splay   view   sys   services   closed   event   blog   

点这里进入ABP开发手记目录 

创建视图模型

在展示层(即JD.CRS.Web.Mvc)的Controllers下新建一个控制器CourseController.cs

技术图片
 1 using Abp.Application.Services.Dto;
 2 using Abp.AspNetCore.Mvc.Authorization;
 3 using JD.CRS.Authorization;
 4 using JD.CRS.Controllers;
 5 using JD.CRS.Course;
 6 using JD.CRS.Web.Models.Course;
 7 using Microsoft.AspNetCore.Mvc;
 8 using System.Threading.Tasks;
 9 
10 namespace JD.CRS.Web.Controllers
11 {
12     [AbpMvcAuthorize(PermissionNames.Pages_Course)]
13     public class CourseController : CRSControllerBase
14     {
15         private readonly ICourseAppService _courseAppService;
16         const int MaxNum = 10;
17         public CourseController(ICourseAppService courseAppService)
18         {
19             _courseAppService = courseAppService;
20         }
21         // GET: /<controller>/
22         public async Task<ActionResult> Index()
23         {
24             var courses = (await _courseAppService.GetAll(new PagedResultRequestDto { MaxResultCount = MaxNum })).Items;
25             // Paging not implemented yet
26             var model = new CourseListViewModel
27             {
28                 Courses = courses
29             };
30             return View(model);
31         }
32 
33         public async Task<ActionResult> EditCourseModal(int courseId)
34         {
35             var course = await _courseAppService.Get(new EntityDto<int>(courseId));
36             var model = new EditCourseModalViewModel
37             {
38                 Course = course
39             };
40             return View("_EditCourseModal", model);
41         }
42     }
43 }
CourseController

ABP开发手记10 - 展示层实现增删改查-控制器

标签:dex   sea   splay   view   sys   services   closed   event   blog   

原文地址:https://www.cnblogs.com/IT-Evan/p/ABP10.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!