即时库存-相关

This commit is contained in:
tongfei
2023-11-14 09:23:10 +08:00
parent e11498f5f9
commit ec8b9efe96
8 changed files with 57 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Domain.IService;
namespace WMS.Web.Domain.Services
{
/// <summary>
/// 即时库存-服务
/// </summary>
public class InventoryService: IInventoryService
{
private readonly IMapper _mapper;
public InventoryService(IMapper mapper)
{
_mapper = mapper;
}
}
}