abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十二)

来源:https://www.cnblogs.com/chillsrc/archive/2019/08/05/11303125.html
-Advertisement-
Play Games

上接(abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一)),在這一篇文章中我們創建服務介面與服務實現類,並創建控制器類。 ...


abp(net core)+easyui+efcore實現倉儲管理系統目錄

abp(net core)+easyui+efcore實現倉儲管理系統——ABP總體介紹(一)

abp(net core)+easyui+efcore實現倉儲管理系統——解決方案介紹(二)

abp(net core)+easyui+efcore實現倉儲管理系統——領域層創建實體(三)

 abp(net core)+easyui+efcore實現倉儲管理系統——定義倉儲並實現 (四)

abp(net core)+easyui+efcore實現倉儲管理系統——創建應用服務(五)

abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之控制器(六)

abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之列表視圖(七)

abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之增刪改視圖(八)

abp(net core)+easyui+efcore實現倉儲管理系統——展現層實現增刪改查之菜單與測試(九)

abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一)

 

上接(abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一)),在這一篇文章中我們創建服務介面與服務實現類,並創建控制器類。

 

 

二、定義應用服務介面需要用到的分頁類

 

     為了在進行查詢時使用, 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; }
    }
}

 

 

三、定義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> //用於更新供應商
    {
    }
}

 

 

四、實現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);
        }
    }
}

 

 

     五 創建SupplierController繼承自TPLMSControllerBase

 

     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); } } }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 語句表達式: 在Python中支持遍歷迴圈的對象:可迭代器對象,支持迭代協議的對象 比如列表list沒有迭代功能只是可迭代對象 迭代:迭代協議 --> 例:f.__next__() 屬於f的迭代方法,全局的迭代方法為next(f) 迭代工具 --> for,…推導… map… 迭代器對象 已經實現 ...
  • 在上一篇文章中,我們已經瞭解了一個starter實現自動配置的基本流程,在這一小結我們將復現上一過程,實現一個自定義的starter。 先來分析starter的需求: 在項目中添加自定義的starter依賴,自動在Spring中載入starter中的Bean; 從application.proper ...
  • 最近工作之餘有時間和精力,加上平時對源碼比較感興趣,就開始啃起了Spring源碼。為加深印象寫了這篇博客,如有錯誤,望各位大佬不吝指正。 我看的是Spring5的源碼,從同性社區download下來後編譯,然後看源碼、寫註釋、一步一步debug,理論指導實踐,實踐再反作用於理論。 因為基於註解的開發 ...
  • 原因是我把Global名字改了,使用預設名字就好了 ...
  • 本系列主要講述IOC依賴註入之Autofac在ASP.NET MVC項目中以及在WebForm項目中的具體應用。 ...
  • 參考資料:vs code配置ftp連接遠程伺服器實現代碼文自動上傳 1.在vscode應用商店中搜索拓展sftp插件,然後進行安裝。2.安裝完成後重啟視窗,按快捷鍵Ctrl+shift+p,輸入sftp:config回車進入配置文件。 配置項: 在azure--應用程式服務 部署中心 設置ftp用戶 ...
  • SmartSql = MyBatis + Cache(Memory | Redis) + R/W Splitting +Dynamic Repository + Diagnostics ...... ...
  • 安裝相關依賴:NPinyin Microsoft.International.Converters.PinYinConverter 直接從vs裡面的nuget管理器搜索下載即可。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...