王 垚
2022-09-05 89e9e87324656eb6ff2bc70c731ee676eeac9111
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Demo.DAL.Basic;
using Kingdee.BOS;
 
namespace Demo.BLL.SCM
{
    public class SAL_SaleOrderBLL
    {
        readonly Context Context;
        public SAL_SaleOrderBLL(Context context)
        {
            this.Context = context;
        }
        public string GetMaterialNameByNumber(string number)
        {
            BD_MaterialDAL materialDAL = new BD_MaterialDAL(Context);
            return materialDAL.GetMaterialNameByNumber(number);
        }
    }
}