using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Threading.Tasks;
|
using VueWebCoreApi.DLL.DAL;
|
using VueWebCoreApi.Models;
|
using VueWebCoreApi.Tools;
|
|
namespace VueWebCoreApi.DLL.BLL
|
{
|
public class AppProductBLL
|
{
|
#region[App已派发工单的物料]
|
public static ToMessage DistrInventory(User us)
|
{
|
return AppProductDAL.DistrInventory(us);
|
}
|
#endregion
|
|
#region[App查看单据及工艺信息]
|
public static ToMessage ProductOrderSearch(User us, string ordertype,string ordercode, string partcode, string startopendate, string endclosedate)
|
{
|
return AppProductDAL.ProductOrderSearch(us, ordertype, ordercode, partcode, startopendate, endclosedate);
|
}
|
#endregion
|
}
|
}
|