29 lines
562 B
C#
29 lines
562 B
C#
![]() |
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|