基于Blazor开发的BS版WMS

26 lines
722 B

using System.Collections.Generic;
using EFCoreDatabase.Entities;
namespace NewWMSWebAPI.TaskService.Interface
{
public interface IManageHelper
{
public bool ManageMoveTaskCreate(MANAGE_MAIN mMANAGE_MAIN,
List<MANAGE_LIST> lsMANAGE_LIST,
bool bTrans,
bool bComplete,
bool bAutoSendControl,
out string sResult);
public bool ManageDownLoad(string stockBarcode, bool bTrans, out string sResult);
public bool ManageInTaskCreate(MANAGE_MAIN mMANAGE_MAIN,
List<MANAGE_LIST> lsMANAGE_LIST,
bool bTrans,
bool bComplete,
bool bAutoSendControl,
out string sResult);
}
}