コード例 #1
0
ファイル: PersonsController.cs プロジェクト: jiasw/LearnABP
        public async Task <ActionResult> EditModal(int roleId)
        {
            var model = await _personAppService.GetPersonByIDAsync(new Abp.Application.Services.Dto.NullableIdDto <long>(roleId));

            return(PartialView("_EditModal", model));
        }