ITADN
danielmackay/dotnet-modular-monolith
danielmackay/dotnet-modular-monolith · 文件 下载 ZIP
文件最后提交记录最后更新时间
README.md

dotnet-modular-monolith

.NET

Goal

Sample repo demoing how an e-commerce system can be architected as a modular monolith using ASP.NET Core.

Modules

Orders Module

Responsible for Order Management

  • Order Creation
  • Order Lifecycle Management
  • Payment: taking and recording payment
  • Shipping: Calculating fee, dispatching, tracking

Warehouse Module

Responsible for Warehouse and Inventory Management

  • Stock Levels - How much do we actually have?
  • Inventory Tracking - Where is the item in the warehouse?
  • Supplier Chain - Where can I buy the item from?
  • Restocking - When do we need to restock?
  • Backorders - When do we put items on back order?
  • Product Management