首页 > 其他 > 详细

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

时间:2019-10-03 09:13:22      阅读:96      评论:0      收藏:0      [点我收藏+]

点这里进入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 - 展示层实现增删改查-控制器

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!