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.
19 lines
490 B
19 lines
490 B
3 months ago
|
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);
|
||
|
}
|
||
|
}
|