10 lines
175 B
C#
10 lines
175 B
C#
using Tnb.WarehouseMgr.Entities.Dto;
|
|
|
|
namespace Tnb.WarehouseMgr.Interfaces
|
|
{
|
|
public interface IWHStorageService
|
|
{
|
|
Task Do(WareHouseUpInput input);
|
|
}
|
|
}
|