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);
| }
| }
| }
|
|