Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWHStorageService.cs
2023-06-19 15:01:37 +08:00

15 lines
291 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Dto;
namespace Tnb.WarehouseMgr.Interfaces
{
public interface IWHStorageService
{
Task Do(WareHouseUpInput input);
}
}