abp(net core)+easyui+efcore實現倉儲管理系統——ABP整體介紹(一)html
abp(net core)+easyui+efcore實現倉儲管理系統——解決方案介紹(二)app
abp(net core)+easyui+efcore實現倉儲管理系統——領域層建立實體(三)async
abp(net core)+easyui+efcore實現倉儲管理系統——定義倉儲並實現 (四)ide
abp(net core)+easyui+efcore實現倉儲管理系統——建立應用服務(五)函數
abp(net core)+easyui+efcore實現倉儲管理系統——展示層實現增刪改查之控制器(六)post
abp(net core)+easyui+efcore實現倉儲管理系統——展示層實現增刪改查之列表視圖(七)測試
abp(net core)+easyui+efcore實現倉儲管理系統——展示層實現增刪改查之增刪改視圖(八)ui
abp(net core)+easyui+efcore實現倉儲管理系統——展示層實現增刪改查之菜單與測試(九)spa
abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一)code
上接(abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一)),在這一篇文章中咱們建立服務接口與服務實現類,並建立控制器類。
2、定義應用服務接口須要用到的分頁類
爲了在進行查詢時使用, PagedSupplierResultRequestDto被用來將模塊數據傳遞到基礎設施層.
1. 在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊「ABP.TPLMS.Application」項目,在彈出菜單中選擇「添加」 > 「新建文件夾」,並重命名爲「Suppliers」
2. 使用鼠標右鍵單擊咱們剛纔建立的「Suppliers」文件夾,在彈出菜單中選擇「添加」 > 「新建文件夾」,並重命名爲「Dto」。
3.右鍵單擊「Dto」文件夾,而後選擇「添加」 > 「類」。 將類命名爲 PagedSupplierResultRequestDto,而後選擇「添加」。代碼以下。
using Abp.Application.Services.Dto; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Supplier.Dto { public class PagedSupplierResultRequestDto : PagedResultRequestDto { public string Keyword { get; set; } } }
4.右鍵單擊「Dto」文件夾,而後選擇「添加」 > 「類」。 將類命名爲 SupplierDto,而後選擇「添加」。代碼以下。
using Abp.Application.Services.Dto; using Abp.AutoMapper; using ABP.TPLMS.Entitys; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Suppliers.Dto { [AutoMapFrom(typeof(Supplier))] public class SupplierDto : EntityDto<int> { public string Address { get; set; } public string Name { get; set; } public string Email { get; set; } public string Code { get; set; } public int Sex { get; set; } public string LinkName { get; set; } public int Status { get; set; } public string Tel { get; set; } public string Mobile { get; set; } public DateTime CreationTime { get; set; } } }
5.右鍵單擊「Dto」文件夾,而後選擇「添加」 > 「類」。 將類命名爲 CreateUpdateSupplierDto,而後選擇「添加」。代碼以下。
using Abp.Application.Services.Dto; using Abp.AutoMapper; using ABP.TPLMS.Entitys; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace ABP.TPLMS.Suppliers.Dto { [AutoMapTo(typeof(Supplier))] public class CreateUpdateSupplierDto : EntityDto<int> { public const int MaxLength = 255; [StringLength(MaxLength)] public string Address { get; set; } [Required] [StringLength(MaxLength)] public string Name { get; set; } [Required] [StringLength(MaxLength)] public string Email { get; set; } [Required] [StringLength(50)] public string Code { get; set; } public int Sex { get; set; } [StringLength(MaxLength)] public string LinkName { get; set; } public int Status { get; set; } [Required] [StringLength(MaxLength)] public string Tel { get; set; } [StringLength(MaxLength)] public string Mobile { get; set; } } }
3、定義ISupplierAppService接口
6. 在Visual Studio 2017的「解決方案資源管理器」中,鼠標右鍵單擊「Suppliers」文件夾,而後選擇「添加」 > 「新建項」,在彈出對話框中選擇「接口」。爲應用服務定義一個名爲 ISupplierAppService
的接口。代碼以下。
using Abp.Application.Services; using ABP.TPLMS.Suppliers.Dto; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Suppliers { public interface ISupplierAppService : IAsyncCrudAppService<//定義了CRUD方法 SupplierDto, //用來展現供應商 int, //Supplier實體的主鍵 PagedSupplierResultRequestDto, //獲取供應商的時候用於分頁 CreateUpdateSupplierDto, //用於建立供應商 CreateUpdateSupplierDto> //用於更新供應商 { } }
4、實現ISupplierAppService
7.在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊「Suppliers」文件夾,而後選擇「添加」 > 「新建項」,在彈出對話框中選擇「類」。爲應用服務定義一個名爲 SupplierAppService
的服務類。代碼以下。
using Abp.Application.Services; using Abp.Domain.Repositories; using ABP.TPLMS.Entitys; using ABP.TPLMS.Suppliers.Dto; using System; using System.Collections.Generic; using System.Text; namespace ABP.TPLMS.Suppliers { public class SupplierAppService :AsyncCrudAppService<Supplier, SupplierDto, int, PagedSupplierResultRequestDto, CreateUpdateSupplierDto, CreateUpdateSupplierDto>,ISupplierAppService { public SupplierAppService(IRepository<Supplier, int> repository) : base(repository) { } public override Task<SupplierDto> Create(CreateUpdateSupplierDto input) { var sin = input; return base.Create(input); } } }
1. 在Visual Studio 2017的「解決方案資源管理器」中,右鍵單擊在領域層「ABP.TPLMS.Web.Mvc」項目中的Controller目錄。 選擇「添加」 > 「新建項…」。以下圖。
2. 在彈出對話框「添加新項-ABP.TPLMS.Web.Mvc」中選擇「控制器類」,而後在名稱輸入框中輸入「SupplierController」,而後點擊「添加」按鈕。以下圖。
3.在SupplierController.cs文件中輸入以下代碼,經過構造函數注入對應用服務的依賴。
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Abp.Application.Services.Dto; using Abp.AspNetCore.Mvc.Authorization; using Abp.Runtime.Validation; using ABP.TPLMS.Controllers; using ABP.TPLMS.Suppliers; using ABP.TPLMS.Suppliers.Dto; using ABP.TPLMS.Web.Models.Supplier; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; namespace ABP.TPLMS.Web.Controllers { [AbpMvcAuthorize] public class SupplierController : TPLMSControllerBase { const int MaxNum= 10; // GET: /<controller>/ public async Task<IActionResult> Index() { var module = (await _supplierAppService.GetAll(new PagedSupplierResultRequestDto { MaxResultCount = MaxNum })).Items;
// Paging not implemented yet SupplierDto cuModule = module.First(); var model = new SupplierListViewModel { Supplier = cuModule, Suppliers=module }; return View(model); } private readonly ISupplierAppService _supplierAppService; public SupplierController(ISupplierAppService supplierAppService) { _supplierAppService = supplierAppService; } public async Task<ActionResult> EditSupplierModal(int moduleId) { var module = await _supplierAppService.Get(new EntityDto<int>(moduleId)); CreateUpdateSupplierDto cuSupplier = AutoMapper.Mapper.Map<CreateUpdateSupplierDto>(module); var model = new EditSupplierModalViewModel { Supplier = cuSupplier }; return View("_EditSupplierModal", model); } } }