14 lines
336 B
C#
14 lines
336 B
C#
using JNPF.Common.Dtos.VisualDev;
|
|
using Tnb.WarehouseMgr.Entities;
|
|
using Tnb.WarehouseMgr.Entities.Dto;
|
|
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
|
|
using Tnb.WarehouseMgr.Entities.Dto.Outputs;
|
|
|
|
namespace Tnb.WarehouseMgr.Interfaces
|
|
{
|
|
public interface IWmsPackOutstockService
|
|
{
|
|
public Task<bool> Distribute();
|
|
}
|
|
}
|