基于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.
 
 
 
 

13 lines
439 B

using System.Collections.Generic;
using EFCoreDatabase.Entities;
namespace Michelin_WebAPI.TaskServices.Interface
{
public interface IManagePreOut
{
//public bool FabricateListCreate(List<MANAGE_MAIN> manageMains,out string sResult);
public bool ManageCreate(MANAGE_MAIN mMANAGE_MAIN, List<MANAGE_LIST> lsMANAGE_LIST, bool bTrans,
bool bAutoSendControl, bool bComplete, out string sResult);
}
}