基于Blazor开发的BS版WMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

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);
}
}