添加项目文件。
This commit is contained in:
28
Epost.BLL/WmsBLL.cs
Normal file
28
Epost.BLL/WmsBLL.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using Epost.DAL;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.BLL
|
||||
{
|
||||
public class WmsBLL
|
||||
{
|
||||
WmsDAL dal = new WmsDAL();
|
||||
public void UpWmsOrdersState(string matchid)
|
||||
{
|
||||
dal.UpWmsOrdersState(matchid);
|
||||
}
|
||||
public string getSku(string barcode)
|
||||
{
|
||||
return dal.getSku(barcode);
|
||||
}
|
||||
|
||||
public DataTable SkuList()
|
||||
{
|
||||
return dal.SkuList();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user