Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWHStorageService.cs
2023-11-06 19:35:59 +08:00

10 lines
175 B
C#

using Tnb.WarehouseMgr.Entities.Dto;
namespace Tnb.WarehouseMgr.Interfaces
{
public interface IWHStorageService
{
Task Do(WareHouseUpInput input);
}
}